summaryrefslogtreecommitdiffstats
path: root/src/gui/WidgetFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
committerDavid Robillard <d@drobilla.net>2018-09-23 17:31:12 +0200
commit394b01da8e26dbe1b6a0520944d954ca0b16b1b5 (patch)
tree1c079badda98cb366d72d59aabcb68fcc38760cf /src/gui/WidgetFactory.cpp
parent367f7c57028ce05f3d765fed678a64ad54a73312 (diff)
downloadingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.gz
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.tar.bz2
ingen-394b01da8e26dbe1b6a0520944d954ca0b16b1b5.zip
Use lowercase namespace names
Diffstat (limited to 'src/gui/WidgetFactory.cpp')
-rw-r--r--src/gui/WidgetFactory.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/WidgetFactory.cpp b/src/gui/WidgetFactory.cpp
index afb6a07f..3ca4eec4 100644
--- a/src/gui/WidgetFactory.cpp
+++ b/src/gui/WidgetFactory.cpp
@@ -22,8 +22,8 @@
#include "WidgetFactory.hpp"
-namespace Ingen {
-namespace GUI {
+namespace ingen {
+namespace gui {
Glib::ustring WidgetFactory::ui_filename = "";
@@ -40,7 +40,7 @@ void
WidgetFactory::find_ui_file()
{
// Try file in bundle (directory where executable resides)
- ui_filename = Ingen::bundle_file_path("ingen_gui.ui");
+ ui_filename = ingen::bundle_file_path("ingen_gui.ui");
if (is_readable(ui_filename)) {
return;
}
@@ -53,7 +53,7 @@ WidgetFactory::find_ui_file()
}
// Try the default system installed path
- ui_filename = Ingen::data_file_path("ingen_gui.ui");
+ ui_filename = ingen::data_file_path("ingen_gui.ui");
if (is_readable(ui_filename)) {
return;
}
@@ -76,5 +76,5 @@ WidgetFactory::create(const std::string& toplevel_widget)
}
}
-} // namespace GUI
-} // namespace Ingen
+} // namespace gui
+} // namespace ingen