summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_joystick
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2014-01-05 13:02:52 +0100
committerStanislaw Halik <sthalik@misaki.pl>2014-01-05 13:02:52 +0100
commit449625118b3d28baabcdb001595a7dec2f8e3593 (patch)
tree293d5131120072ca5cf74565d5a900f98a8139c7 /ftnoir_tracker_joystick
parentbbe8552db3fb0d7ab2c3a26b058c059e5df21eeb (diff)
remove settings dialog copypasted all over, losing functionality
Diffstat (limited to 'ftnoir_tracker_joystick')
-rw-r--r--ftnoir_tracker_joystick/ftnoir_tracker_joystick_dialog.cpp27
1 files changed, 2 insertions, 25 deletions
diff --git a/ftnoir_tracker_joystick/ftnoir_tracker_joystick_dialog.cpp b/ftnoir_tracker_joystick/ftnoir_tracker_joystick_dialog.cpp
index a089385f..b0766634 100644
--- a/ftnoir_tracker_joystick/ftnoir_tracker_joystick_dialog.cpp
+++ b/ftnoir_tracker_joystick/ftnoir_tracker_joystick_dialog.cpp
@@ -56,31 +56,8 @@ void TrackerControls::doOK() {
}
void TrackerControls::doCancel() {
- if (s.b->modifiedp()) {
- int ret = QMessageBox::question ( this, "Settings have changed", "Do you want to save the settings?", QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel );
-
- switch (ret) {
- case QMessageBox::Save:
- s.b->save();
- if (tracker)
- tracker->reload();
- this->close();
- break;
- case QMessageBox::Discard:
- s.b->reload();
- this->close();
- break;
- case QMessageBox::Cancel:
- // Cancel was clicked
- break;
- default:
- // should never be reached
- break;
- }
- }
- else {
- this->close();
- }
+ s.b->revert();
+ this->close();
}
extern "C" FTNOIR_TRACKER_BASE_EXPORT ITrackerDialog* CALLING_CONVENTION GetDialog( )