diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2013-07-26 16:42:40 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2013-07-26 16:42:40 +0200 |
commit | 7c6208d53fa7f96fb1e844b23b9ad341c22f0fc8 (patch) | |
tree | 37a32b2b2b3b02cb9ed9c886debf3cde7f8a5687 /ftnoir_tracker_ht | |
parent | a205d7bbe8085d22d2f2931812a7975c981bf363 (diff) |
Remove dead code
Diffstat (limited to 'ftnoir_tracker_ht')
-rw-r--r-- | ftnoir_tracker_ht/ftnoir_tracker_ht.cpp | 19 | ||||
-rw-r--r-- | ftnoir_tracker_ht/ftnoir_tracker_ht.h | 1 |
2 files changed, 0 insertions, 20 deletions
diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp index 828ddcb7..b755010c 100644 --- a/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp +++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.cpp @@ -14,15 +14,6 @@ #endif // delicious copypasta -static void open_settings_dialog(int idx, void* parent) { -#if defined(_WIN32) || defined(__WIN32) - qDebug() << "opening settings"; - if (idx == 0) - idx = 1; -#endif -} - -// delicious copypasta static QList<QString> get_camera_names(void) { QList<QString> ret; #if defined(_WIN32) || defined(__WIN32) @@ -286,16 +277,6 @@ extern "C" FTNOIR_TRACKER_BASE_EXPORT ITrackerDialog* CALLING_CONVENTION GetDial return new TrackerControls; } -void TrackerControls::cameraSettings() { - open_settings_dialog(ui.cameraName->currentIndex(), -#if defined(_WIN32) - (HANDLE) winId() -#else - NULL -#endif - ); -} - TrackerControls::TrackerControls() { ui.setupUi(this); diff --git a/ftnoir_tracker_ht/ftnoir_tracker_ht.h b/ftnoir_tracker_ht/ftnoir_tracker_ht.h index a08f2437..fcdea140 100644 --- a/ftnoir_tracker_ht/ftnoir_tracker_ht.h +++ b/ftnoir_tracker_ht/ftnoir_tracker_ht.h @@ -74,7 +74,6 @@ private slots: void settingChanged() { settingsDirty = true; } void settingChanged(int) { settingsDirty = true; } void settingChanged(double) { settingsDirty = true; } - void cameraSettings(); }; #endif |