NO-OP: whitespace

This commit is contained in:
Robin Gareus 2017-04-01 15:50:48 +02:00
parent 16cdab6327
commit dae7e8dbd3
3 changed files with 43 additions and 44 deletions

View file

@ -37,7 +37,7 @@ using namespace ARDOUR_UI_UTILS;
ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
: Dialog (title, modal, use_seperator)
, proxy (0)
, _splash_pushed (false)
, _splash_pushed (false)
{
init ();
set_position (Gtk::WIN_POS_MOUSE);
@ -45,7 +45,7 @@ ArdourDialog::ArdourDialog (string title, bool modal, bool use_seperator)
ArdourDialog::ArdourDialog (Gtk::Window& parent, string title, bool modal, bool use_seperator)
: Dialog (title, parent, modal, use_seperator)
, _splash_pushed (false)
, _splash_pushed (false)
{
init ();
set_position (Gtk::WIN_POS_CENTER_ON_PARENT);
@ -53,15 +53,15 @@ ArdourDialog::ArdourDialog (Gtk::Window& parent, string title, bool modal, bool
ArdourDialog::~ArdourDialog ()
{
if (_splash_pushed) {
Splash* spl = Splash::instance();
if (_splash_pushed) {
Splash* spl = Splash::instance();
if (spl) {
spl->pop_front();
}
}
Keyboard::the_keyboard().focus_out_window (0, this);
WM::Manager::instance().remove (proxy);
if (spl) {
spl->pop_front();
}
}
Keyboard::the_keyboard().focus_out_window (0, this);
WM::Manager::instance().remove (proxy);
}
bool
@ -98,7 +98,7 @@ ArdourDialog::on_show ()
if (spl && spl->is_visible()) {
spl->pop_back_for (*this);
_splash_pushed = true;
_splash_pushed = true;
}
}