diff --git a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx index 54d99b302..250da6e39 100644 --- a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx +++ b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.cxx @@ -125,9 +125,6 @@ MasterPanelWindow :: MasterPanelWindow (void) mainWindow->signal_key_press_event().connect(sigc::mem_fun( *this, &MasterPanelWindow::onKeyPressed)); - mainWindow->signal_delete_event().connect(sigc::mem_fun( - *this, - &MasterPanelWindow::onDeleteEvent)); // create the Now Playing widget Gtk::Box * nowPlayingBox; diff --git a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.h b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.h index e76fded9b..635ba1def 100644 --- a/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.h +++ b/campcaster/src/products/gLiveSupport/src/MasterPanelWindow.h @@ -385,7 +385,7 @@ class MasterPanelWindow : public GuiWindow * @param event attributes for the event (?) * @return true if handled the event, false to continue deleting */ - bool + virtual bool onDeleteEvent(GdkEventAny * event) throw ();