summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-05-02 21:13:36 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-05-02 21:13:36 -0400
commit6fd66bd46768f205e4eb02d6e14ef4a3a20700d2 (patch)
tree144b4179d2ca84116533320dd94aa0f224bdc18b /gtk2_ardour/ardour_dialog.cc
parent00f94a04cca8ac27a64924263e134ff0ab3daa4d (diff)
move CloseAllDialogs signal and associated method from ArdourDialog to ARDOUR_UI, and make ArdourWindow obey it too
Diffstat (limited to 'gtk2_ardour/ardour_dialog.cc')
-rw-r--r--gtk2_ardour/ardour_dialog.cc9
1 files changed, 3 insertions, 6 deletions
diff --git a/gtk2_ardour/ardour_dialog.cc b/gtk2_ardour/ardour_dialog.cc
index 87b48d986a..cd7d0fbd55 100644
--- a/gtk2_ardour/ardour_dialog.cc
+++ b/gtk2_ardour/ardour_dialog.cc
@@ -23,6 +23,7 @@
#include <gtkmm2ext/doi.h>
#include "ardour_dialog.h"
+#include "ardour_ui.h"
#include "keyboard.h"
#include "splash.h"
@@ -30,8 +31,6 @@ using namespace std;
using namespace Gtk;
using namespace Gtkmm2ext;
-sigc::signal<void> ArdourDialog::CloseAllDialogs;
-
ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
: Dialog (title, modal, use_seperator)
, _splash_pushed (false)
@@ -98,9 +97,7 @@ ArdourDialog::on_show ()
void
ArdourDialog::init ()
{
- set_type_hint(Gdk::WINDOW_TYPE_HINT_DIALOG);
set_border_width (10);
- CloseAllDialogs.connect (
- sigc::bind (sigc::mem_fun (*this, &ArdourDialog::response),
- RESPONSE_CANCEL));
+ // set_type_hint (Gdk::WINDOW_TYPE_HINT_DIALOG);
+ ARDOUR_UI::CloseAllDialogs.connect (sigc::bind (sigc::mem_fun (*this, &ArdourDialog::response), RESPONSE_CANCEL));
}