diff options
author | Timothy Pearson <[email protected]> | 2012-05-18 03:51:53 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-05-18 03:51:53 -0500 |
commit | 96936f9f1272296b22c7ed6d6e68e944ba78a6b6 (patch) | |
tree | b0637173249a4f0ec84013658400f63d59ae58d4 /src/bondwizard.cpp | |
parent | fd4d12151ca6b034307f8eba345fbef97a3cbfaf (diff) | |
download | kcmldap-96936f9f1272296b22c7ed6d6e68e944ba78a6b6.tar.gz kcmldap-96936f9f1272296b22c7ed6d6e68e944ba78a6b6.zip |
Load/save realms
Diffstat (limited to 'src/bondwizard.cpp')
-rw-r--r-- | src/bondwizard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bondwizard.cpp b/src/bondwizard.cpp index b0fe2b7..3a7fc17 100644 --- a/src/bondwizard.cpp +++ b/src/bondwizard.cpp @@ -113,20 +113,20 @@ bool BondWizard::askClose(){ */ void BondWizard::reject(){ if (askClose()){ - exit(0); + done(0); } } void BondWizard::closeEvent(TQCloseEvent* e){ if ( askClose() ) - exit(0); + done(0); else e->ignore(); } /** maybe call a dialog that the wizard has finished. */ void BondWizard::accept(){ - exit(0); + done(0); } /** calls all save functions after resetting all features/ OS/ theme selections to Trinity default */ |