From dcd19ed2bd620317ed4e6c2f7d15e0434d4cdce1 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Sat, 11 Feb 2017 23:56:00 +0100 Subject: [PATCH] fix definition of raw string the parens need to be innermost --- src/gui/workspace/actions.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/workspace/actions.hpp b/src/gui/workspace/actions.hpp index 442639d2c..ae12058fe 100644 --- a/src/gui/workspace/actions.hpp +++ b/src/gui/workspace/actions.hpp @@ -103,7 +103,7 @@ namespace workspace { populateMainActions (Gtk::UIManager& uiManager) { //----- Create the Action Group -----// - actionGroup = ActionGroup::create(); + actionGroup = ActionGroup::create(); ////////////////////////////////////////////TICKET #1068 not clear if it is necessary to give a *name* to that action group // File menu actionGroup->add(Action::create("FileMenu", _("_File"))); @@ -159,7 +159,7 @@ namespace workspace { uiManager.insert_action_group(actionGroup); //----- Create the UI layout -----// - string ui_info = R"(*** + string ui_info = R"***( @@ -215,7 +215,7 @@ namespace workspace { - ***)"; + )***"; try { uiManager.add_ui_from_string (ui_info); @@ -242,7 +242,7 @@ namespace workspace { { const uint count = PanelManager::getPanelDescriptionCount(); - Glib::RefPtr actionGroup = ActionGroup::create(); + Glib::RefPtr actionGroup = ActionGroup::create(); ////////////////////////TICKET #1068 not clear if it is necessary to give a *name* to that action group for (uint i = 0; i < count; i++) { const gchar *stock_id = PanelManager::getPanelStockID(i);