From 394b01da8e26dbe1b6a0520944d954ca0b16b1b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Sep 2018 17:31:12 +0200 Subject: Use lowercase namespace names --- src/gui/WidgetFactory.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/gui/WidgetFactory.cpp') 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 -- cgit v1.2.1