summaryrefslogtreecommitdiff
path: root/core/apps/calibrate/calibrate.cpp
Unidiff
Diffstat (limited to 'core/apps/calibrate/calibrate.cpp') (more/less context) (show whitespace changes)
-rw-r--r--core/apps/calibrate/calibrate.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/core/apps/calibrate/calibrate.cpp b/core/apps/calibrate/calibrate.cpp
index b9ad73d..6d498bc 100644
--- a/core/apps/calibrate/calibrate.cpp
+++ b/core/apps/calibrate/calibrate.cpp
@@ -25,3 +25,3 @@
25#include <qpe/resource.h> 25#include <qpe/resource.h>
26 26#include <qpe/qcopenvelope_qws.h>
27#include <qapplication.h> 27#include <qapplication.h>
@@ -82,4 +82,11 @@ void Calibrate::hide()
82{ 82{
83 if ( isVisible() ) 83 if ( isVisible ( )) {
84 store(); 84 store();
85
86 // hack - calibrate is a launcher dialog, but treated like a standalone app
87 {
88 QCopEnvelope e( "QPE/System", "closing(QString)" );
89 e << QString ( "calibrate" );
90 }
91 }
85 QDialog::hide(); 92 QDialog::hide();