summaryrefslogtreecommitdiff
path: root/gtk2_ardour/theme_manager.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2015-01-04 21:18:48 +0700
committerPaul Davis <paul@linuxaudiosystems.com>2015-09-16 16:55:17 -0400
commitfc1e7dbb55939c708ce572d3a5c2518ea926a682 (patch)
treedbd0cfc8a3a800cb5e30f6f9e2e5fa68442f79d1 /gtk2_ardour/theme_manager.cc
parent0fd1aa3808805425c3d91b620f1c590cb6065170 (diff)
Move DPIReset and ColorsChanged signals into UIConfiguration
Diffstat (limited to 'gtk2_ardour/theme_manager.cc')
-rw-r--r--gtk2_ardour/theme_manager.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc
index 1f1baa84f1..9e28990290 100644
--- a/gtk2_ardour/theme_manager.cc
+++ b/gtk2_ardour/theme_manager.cc
@@ -48,7 +48,6 @@
#include "theme_manager.h"
#include "rgb_macros.h"
#include "ardour_ui.h"
-#include "global_signals.h"
#include "utils.h"
#include "i18n.h"
@@ -59,10 +58,6 @@ using namespace PBD;
using namespace ARDOUR;
using namespace ARDOUR_UI_UTILS;
-namespace ARDOUR_UI_UTILS {
- sigc::signal<void> ColorsChanged;
-}
-
ThemeManager::ThemeManager()
: dark_button (_("Dark Theme"))
, light_button (_("Light Theme"))
@@ -206,7 +201,7 @@ ThemeManager::ThemeManager()
setup_aliases ();
setup_modifiers ();
- ARDOUR_UI_UTILS::ColorsChanged.connect (sigc::mem_fun (*this, &ThemeManager::colors_changed));
+ UIConfiguration::ColorsChanged.connect (sigc::mem_fun (*this, &ThemeManager::colors_changed));
}
ThemeManager::~ThemeManager()