From 626ff0a5fa0977ccd89e7991b0f5932267ea5fee Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Sat, 11 Jan 2025 21:57:50 -0500 Subject: [PATCH] chore: remove unused GUI_HOOK --- src/apps/deskflow-gui/dialogs/SettingsDialog.cpp | 3 --- src/apps/deskflow-gui/main.cpp | 4 ---- 2 files changed, 7 deletions(-) diff --git a/src/apps/deskflow-gui/dialogs/SettingsDialog.cpp b/src/apps/deskflow-gui/dialogs/SettingsDialog.cpp index b285be416..f06a43f25 100644 --- a/src/apps/deskflow-gui/dialogs/SettingsDialog.cpp +++ b/src/apps/deskflow-gui/dialogs/SettingsDialog.cpp @@ -76,9 +76,6 @@ SettingsDialog::SettingsDialog( Qt::QueuedConnection ); -#ifdef DESKFLOW_GUI_HOOK_SETTINGS - DESKFLOW_GUI_HOOK_SETTINGS -#endif adjustSize(); QApplication::processEvents(); setFixedHeight(height()); diff --git a/src/apps/deskflow-gui/main.cpp b/src/apps/deskflow-gui/main.cpp index a33040fef..e13bc2848 100644 --- a/src/apps/deskflow-gui/main.cpp +++ b/src/apps/deskflow-gui/main.cpp @@ -168,10 +168,6 @@ int main(int argc, char *argv[]) MainWindow mainWindow(configScopes, appConfig); mainWindow.open(); -#ifdef DESKFLOW_GUI_HOOK_START - DESKFLOW_GUI_HOOK_START -#endif - return QApplication::exec(); }