summaryrefslogtreecommitdiff
path: root/frontends/gtk/toolbar_items.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-08-30 12:20:01 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-09-21 10:53:41 +0100
commite36338b6177df9617c89e2eae4f3fcb0a77d7b5b (patch)
tree4991936c8c0424d7f3677e098e693cca6362882f /frontends/gtk/toolbar_items.h
parent08d7c55cc536211784a24df179719a802435ff0b (diff)
downloadnetsurf-e36338b6177df9617c89e2eae4f3fcb0a77d7b5b.tar.gz
netsurf-e36338b6177df9617c89e2eae4f3fcb0a77d7b5b.tar.bz2
complete toolbar button click handler implementation
Diffstat (limited to 'frontends/gtk/toolbar_items.h')
-rw-r--r--frontends/gtk/toolbar_items.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/frontends/gtk/toolbar_items.h b/frontends/gtk/toolbar_items.h
index 909b00d82..9bbb30004 100644
--- a/frontends/gtk/toolbar_items.h
+++ b/frontends/gtk/toolbar_items.h
@@ -128,17 +128,17 @@ TOOLBAR_ITEM(TOGGLEDEBUGGING_BUTTON, toggledebugging, true, toggledebugging_butt
TOOLBAR_ITEM(SAVEBOXTREE_BUTTON, debugboxtree, true, debugboxtree_button_clicked_cb)
TOOLBAR_ITEM(SAVEDOMTREE_BUTTON, debugdomtree, true, debugdomtree_button_clicked_cb)
TOOLBAR_ITEM(LOCALHISTORY_BUTTON, localhistory, true, localhistory_button_clicked_cb)
-TOOLBAR_ITEM(GLOBALHISTORY_BUTTON, globalhistory, true, NULL)
-TOOLBAR_ITEM(ADDBOOKMARKS_BUTTON, addbookmarks, true, NULL)
-TOOLBAR_ITEM(SHOWBOOKMARKS_BUTTON, showbookmarks, true, NULL)
-TOOLBAR_ITEM(SHOWCOOKIES_BUTTON, showcookies, true, NULL)
-TOOLBAR_ITEM(OPENLOCATION_BUTTON, openlocation, true, NULL)
+TOOLBAR_ITEM(GLOBALHISTORY_BUTTON, globalhistory, true, globalhistory_button_clicked_cb)
+TOOLBAR_ITEM(ADDBOOKMARKS_BUTTON, addbookmarks, true, addbookmarks_button_clicked_cb)
+TOOLBAR_ITEM(SHOWBOOKMARKS_BUTTON, showbookmarks, true, showbookmarks_button_clicked_cb)
+TOOLBAR_ITEM(SHOWCOOKIES_BUTTON, showcookies, true, showcookies_button_clicked_cb)
+TOOLBAR_ITEM(OPENLOCATION_BUTTON, openlocation, true, openlocation_button_clicked_cb)
TOOLBAR_ITEM(NEXTTAB_BUTTON, nexttab, false, NULL)
TOOLBAR_ITEM(PREVTAB_BUTTON, prevtab, false, NULL)
-TOOLBAR_ITEM(CONTENTS_BUTTON, contents, true, NULL)
-TOOLBAR_ITEM(GUIDE_BUTTON, guide, true, NULL)
-TOOLBAR_ITEM(INFO_BUTTON, info, true, NULL)
-TOOLBAR_ITEM(ABOUT_BUTTON, about, true, NULL)
+TOOLBAR_ITEM(CONTENTS_BUTTON, contents, true, contents_button_clicked_cb)
+TOOLBAR_ITEM(GUIDE_BUTTON, guide, true, guide_button_clicked_cb)
+TOOLBAR_ITEM(INFO_BUTTON, info, true, info_button_clicked_cb)
+TOOLBAR_ITEM(ABOUT_BUTTON, about, true, about_button_clicked_cb)
#ifdef TOOLBAR_ITEM_SET
#undef TOOLBAR_ITEM