summaryrefslogtreecommitdiff
path: root/muse2/muse/help.cpp
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2011-09-08 02:05:32 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2011-09-08 02:05:32 +0000
commitd3e8a1b4c98cb3ba8b73f367ea88ad23f8dbca66 (patch)
tree921e5193e46287f0c34f4eff1590efb1df18d20f /muse2/muse/help.cpp
parentff0c5e9154e7a3d71d2465639b5e0da1ea2c7242 (diff)
introducing namespaces
Diffstat (limited to 'muse2/muse/help.cpp')
-rw-r--r--muse2/muse/help.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/muse2/muse/help.cpp b/muse2/muse/help.cpp
index 687c5a31..ae805a60 100644
--- a/muse2/muse/help.cpp
+++ b/muse2/muse/help.cpp
@@ -34,6 +34,8 @@
#include "icons.h"
#include "aboutbox_impl.h"
+namespace MusEApp {
+
//---------------------------------------------------------
// startHelpBrowser
//---------------------------------------------------------
@@ -82,7 +84,7 @@ void MusE::startBugBrowser()
void MusE::about()
{
- AboutBoxImpl ab;
+ MusEWidget::AboutBoxImpl ab;
ab.show();
ab.exec();
}
@@ -107,3 +109,5 @@ void MusE::launchBrowser(QString &whereTo)
printf("Unable to launch help\n");
}
}
+
+} // namespace MusEApp