Skip to content
Snippets Groups Projects
Commit 0ee2d5fc authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#1116] Fix compilation problems

parent d8847823
Branches
Tags
No related merge requests found
...@@ -230,6 +230,7 @@ GtkWidget* build_sfl_or_account() { ...@@ -230,6 +230,7 @@ GtkWidget* build_sfl_or_account() {
GtkWidget* build_sip_account_configuration( void ) { GtkWidget* build_sip_account_configuration( void ) {
GtkWidget* table; GtkWidget* table;
GtkWidget* label; GtkWidget* label;
GtkWidget *image;
wiz->sip_account = create_vbox( GTK_ASSISTANT_PAGE_CONTENT , _("SIP account configuration") , _("Please fill the following information:")); wiz->sip_account = create_vbox( GTK_ASSISTANT_PAGE_CONTENT , _("SIP account configuration") , _("Please fill the following information:"));
// table // table
......
...@@ -94,6 +94,9 @@ GtkWidget* searchbar_new(gchar* searchbar_type) { ...@@ -94,6 +94,9 @@ GtkWidget* searchbar_new(gchar* searchbar_type) {
gtk_entry_set_icon_from_stock (GTK_ENTRY (searchbox), GTK_ENTRY_ICON_PRIMARY, GTK_STOCK_FIND); gtk_entry_set_icon_from_stock (GTK_ENTRY (searchbox), GTK_ENTRY_ICON_PRIMARY, GTK_STOCK_FIND);
gtk_entry_set_icon_from_stock (GTK_ENTRY (searchbox), GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CLEAR); gtk_entry_set_icon_from_stock (GTK_ENTRY (searchbox), GTK_ENTRY_ICON_SECONDARY, GTK_STOCK_CLEAR);
#else #else
GtkWidget *image;
searchbox = sexy_icon_entry_new(); searchbox = sexy_icon_entry_new();
image = gtk_image_new_from_stock( GTK_STOCK_FIND , GTK_ICON_SIZE_SMALL_TOOLBAR); image = gtk_image_new_from_stock( GTK_STOCK_FIND , GTK_ICON_SIZE_SMALL_TOOLBAR);
sexy_icon_entry_set_icon( SEXY_ICON_ENTRY(searchbox), SEXY_ICON_ENTRY_PRIMARY , GTK_IMAGE(image) ); sexy_icon_entry_set_icon( SEXY_ICON_ENTRY(searchbox), SEXY_ICON_ENTRY_PRIMARY , GTK_IMAGE(image) );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment