summaryrefslogtreecommitdiff
path: root/plugingui
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2019-05-12 22:27:24 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2019-05-12 22:27:24 +0200
commitf8642113634dc5ab6ffbc1e1d5b79d5be8e579da (patch)
treed453b226ce6d8090b33bc704e8e0307aec4644a8 /plugingui
parentcf0b8b4568bd7df489426cb2bd88e69a2f73d6a2 (diff)
Put tooltip texts into anonymous namespace.
Diffstat (limited to 'plugingui')
-rw-r--r--plugingui/maintab.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugingui/maintab.cc b/plugingui/maintab.cc
index 7df5e98..2320c7f 100644
--- a/plugingui/maintab.cc
+++ b/plugingui/maintab.cc
@@ -26,7 +26,7 @@
*/
#include "maintab.h"
-namespace GUI
+namespace
{
constexpr char humanizer_tip[] = "\
@@ -81,6 +81,11 @@ The pink areas indicate the spread of the position and velocity of the\n\
next note in line. The wider the area the more the note can move in time\n\
and velocity.";
+} // end anonymous namespace
+
+namespace GUI
+{
+
MainTab::MainTab(Widget* parent,
Settings& settings,
SettingsNotifier& settings_notifier,