summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk/compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/compat.c b/gtk/compat.c
index f403e367f..0ae98e120 100644
--- a/gtk/compat.c
+++ b/gtk/compat.c
@@ -480,7 +480,7 @@ GtkWidget *nsgtk_button_new_from_stock(const gchar *stock_id)
#if GTK_CHECK_VERSION(3,10,0)
return gtk_button_new_with_label(stock_id);
#else
- return nsgtk_button_new_from_stock(stock_id);
+ return gtk_button_new_from_stock(stock_id);
#endif
}
@@ -488,7 +488,7 @@ GtkWidget *nsgtk_button_new_from_stock(const gchar *stock_id)
gboolean nsgtk_stock_lookup(const gchar *stock_id, GtkStockItem *item)
{
#if GTK_CHECK_VERSION(3,10,0)
- return false;
+ return FALSE;
#else
return gtk_stock_lookup(stock_id, item);
#endif