pavuapplication: Drop references to unused on_hide_window

This commit is contained in:
Arun Raghavan 2024-04-15 17:06:45 -04:00
parent 19d19b9e4b
commit a1ac8eb8d3
2 changed files with 2 additions and 3 deletions

View File

@ -47,7 +47,7 @@ PavuApplication::PavuApplication() :
} }
/* /*
* Create the main window and connect its "on_hide_window" signal to our cleanup * Create the main window and connect its "on_close_window" signal to our cleanup
* function * function
*/ */
MainWindow* PavuApplication::create_window() MainWindow* PavuApplication::create_window()
@ -86,7 +86,7 @@ void PavuApplication::on_activate()
mainWindow->present(); mainWindow->present();
} }
/* "on_hide_window" signal handler /* "on_close_window" signal handler
* This is executed in the first-running process and performs cleanup before * This is executed in the first-running process and performs cleanup before
* exiting : when the last registered window of Gtk::Application is closed, * exiting : when the last registered window of Gtk::Application is closed,
* the application's run() function returns. * the application's run() function returns.

View File

@ -44,7 +44,6 @@ protected:
private: private:
MainWindow* create_window(); MainWindow* create_window();
void on_hide_window();
bool on_close_window(); bool on_close_window();
pa_glib_mainloop *m; pa_glib_mainloop *m;