summaryrefslogtreecommitdiff
path: root/src/preferencesDialog.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2024-07-23 20:37:48 -0400
committerLouie S <louie@example.com>2024-07-23 20:37:48 -0400
commitc34930425fadfc4083067b9306159cd8e8ecf6c6 (patch)
treed9c09709f1b9cf7e9bcf098d48c7036044098a7d /src/preferencesDialog.h
parentf820f439910ef0243e6b9aded293190341b058ac (diff)
Rearrange source file locations
Diffstat (limited to 'src/preferencesDialog.h')
-rw-r--r--src/preferencesDialog.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/preferencesDialog.h b/src/preferencesDialog.h
deleted file mode 100644
index ac9b88e..0000000
--- a/src/preferencesDialog.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef PREFERENCESDIALOG_H
-#define PREFERENCESDIALOG_H
-
-#include <QDialog>
-
-#include "ui_preferencesDialog.h"
-
-// set configuration options in the program
-class PreferencesDialog : public QDialog {
- Q_OBJECT
-
- public:
- PreferencesDialog();
-
- private:
- Ui::preferencesDialog ui;
- QDialog::DialogCode ret_value = QDialog::Rejected;
-
- void setupPathsTab();
-
- private slots:
- void dbPathDialog();
- void close();
- void apply();
- void reload();
-};
-
-#endif