summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-20 13:13:21 (EST)
committer Patrick McDermott <pj@pehjota.net>2017-11-20 13:13:21 (EST)
commit6c17f0940df462dbc90dd92636e6326e4cd13b16 (patch)
tree1a85aff0f1542d0578566e2f647db4ac016f3342
parentcf1be22ec2a798140b67ce29c4b137e14ec41bc5 (diff)
downloadmarquee-6c17f0940df462dbc90dd92636e6326e4cd13b16.zip
marquee-6c17f0940df462dbc90dd92636e6326e4cd13b16.tar.gz
marquee-6c17f0940df462dbc90dd92636e6326e4cd13b16.tar.bz2
MqMainMenu: Add some missing parentheses
Syntax error introduced in commit 84b7af8.
-rw-r--r--src/toolbars/navigation/main-menu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/toolbars/navigation/main-menu.c b/src/toolbars/navigation/main-menu.c
index 94b0b7c..9eea59c 100644
--- a/src/toolbars/navigation/main-menu.c
+++ b/src/toolbars/navigation/main-menu.c
@@ -324,27 +324,27 @@ create_main_grid(MqMainMenu *main_menu)
/* Y, X, ID, ICON, LABEL,
* TOOLTIP */
NEW_BTN(0, 0, new_window, "window-new", _("New Window"),
- _("Open a new window");
+ _("Open a new window"));
NEW_BTN(0, 1, find, "edit-find", _("Find"),
- _("Find text in this page");
+ _("Find text in this page"));
NEW_BTN(0, 2, fullscreen, "view-fullscreen", _("Full Screen"),
_("Display the window in full screen"));
/* Y, X, ID, ICON, LABEL,
* TOOLTIP */
NEW_BTN(1, 0, open, "document-open", _("Open File"),
- _("Open a local file");
+ _("Open a local file"));
NEW_BTN(1, 1, save, "document-save-as", _("Save Page"),
- _("Save this page");
+ _("Save this page"));
NEW_BTN(1, 2, email_link, "mail-message-new", _("E-mail Link"),
_("E-mail a link to this page"));
/* Y, X, ID, ICON, LABEL,
* TOOLTIP */
NEW_BTN(2, 0, print_preview,"document-print-preview",_("Print Preview"),
- _("Preview this page");
+ _("Preview this page"));
NEW_BTN(2, 1, print, "document-print", _("Print"),
- _("Print this page");
+ _("Print this page"));
NEW_BTN(2, 2, inspector, "preferences-system", _("Inspector"),
_("Open the Web inspector"));