summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-04-10 00:24:01 +0100
committerVincent Sanders <vince@kyllikki.org>2015-04-10 00:24:01 +0100
commit85f90899ed5fc9756fdd884b8936dc9e97c9fa09 (patch)
treed1f145dfdf248d392ea9ad6a03f4fd261d2cc949
parent50f68b11a4983341bd94f0946e2f05f1d89ca1c8 (diff)
downloadnetsurf-85f90899ed5fc9756fdd884b8936dc9e97c9fa09.tar.gz
netsurf-85f90899ed5fc9756fdd884b8936dc9e97c9fa09.tar.bz2
Fix up silly recusrsion typo in nsgtk_button_new_from_stock compatability
-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