Missing copyright declaration.
[ardour.git] / gtk2_ardour / theme_manager.cc
index 3735791eb815263e19548f892e5b7cafedef6657..70f249c1c6cf8e456e5e8d6e2d2b88b9fb62e5f5 100644 (file)
 #include <gtkmm2ext/window_title.h>
 #include <gtkmm/settings.h>
 
-#include <pbd/file_utils.h>
+#include "pbd/file_utils.h"
 
-#include <ardour/configuration.h>
-#include <ardour/filesystem_paths.h>
-#include <ardour/profile.h>
+#include "ardour/configuration.h"
+#include "ardour/filesystem_paths.h"
+#include "ardour/profile.h"
 
 #include "theme_manager.h"
 #include "rgb_macros.h"
@@ -50,8 +50,8 @@ sigc::signal<void,uint32_t> ColorChanged;
 
 ThemeManager::ThemeManager()
        : ArdourDialog ("ThemeManager"),
-       dark_button ("Dark Theme"),
-       light_button ("Light Theme"),
+       dark_button ("Dark theme"),
+       light_button ("Light theme"),
        reset_button ("Restore Defaults")
 {
        Gtkmm2ext::WindowTitle title (Glib::get_application_name ());
@@ -195,11 +195,11 @@ load_rc_file (const string& filename, bool themechange)
        spath += user_config_directory();
        spath += system_config_search_path();
 
-       if(!find_file_in_search_path (spath, filename, rc_file_path))
-       {
-               warning << string_compose(_("Unable to find UI style file %1 in search path %2. Ardour will look strange"),
+       if (!find_file_in_search_path (spath, filename, rc_file_path)) {
+               warning << string_compose(
+                               _("Unable to find UI style file %1 in search path %2. Ardour will look strange"),
                                filename, spath.to_string()) 
-                       << endmsg;
+                               << endmsg;
                return;
        }
 
@@ -275,7 +275,7 @@ ThemeManager::setup_theme ()
        ColorsChanged.emit();
 
        bool env_defined = false;
-       string rcfile = Glib::getenv("ARDOUR2_UI_RC", env_defined);
+       string rcfile = Glib::getenv("ARDOUR3_UI_RC", env_defined);
 
        if(!env_defined) {
                rcfile = ARDOUR_UI::config()->ui_rc_file.get();