I want to insert GtkEntry widget to GtkToolbar. Following line
gtk_toolbar_insert(GTK_TOOLBAR(searchPanel_Toolbar),
GTK_TOOL_ITEM(searchPanel_Entry), -1);
gives me this error:
Gtk-CRITICAL **: gtk_toolbar_insert: assertion `GTK_IS_TOOL_ITEM (item)' failed
How can I add widgets to GtkToolbar without gtk_toolbar_insert_widget() which is deprecated?
searchPanel_Entryis not aGtkToolItem. What exactly issearchPanel_Entry?