mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix a -Wincompatible-pointer-types
This commit is contained in:
parent
e64af8e4ed
commit
c10154ad23
1 changed files with 1 additions and 1 deletions
|
|
@ -14157,7 +14157,7 @@ gtk_tree_view_set_search_entry (GtkTreeView *tree_view,
|
||||||
|
|
||||||
if (entry)
|
if (entry)
|
||||||
{
|
{
|
||||||
tree_view->priv->search_entry = g_object_ref (entry);
|
tree_view->priv->search_entry = GTK_ENTRY (g_object_ref (entry));
|
||||||
tree_view->priv->search_custom_entry_set = TRUE;
|
tree_view->priv->search_custom_entry_set = TRUE;
|
||||||
|
|
||||||
if (tree_view->priv->search_entry_changed_id == 0)
|
if (tree_view->priv->search_entry_changed_id == 0)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue