summaryrefslogtreecommitdiff
path: root/x11/libqpe-x11/qpe/qpeapplication.h
Side-by-side diff
Diffstat (limited to 'x11/libqpe-x11/qpe/qpeapplication.h') (more/less context) (show whitespace changes)
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.h b/x11/libqpe-x11/qpe/qpeapplication.h
index 3713251..cd385db 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.h
+++ b/x11/libqpe-x11/qpe/qpeapplication.h
@@ -11,2 +11,3 @@
+class QCopChannel;
class QPEApplication : public QApplication {
@@ -37,3 +38,3 @@ public:
static void showDialog( QDialog*, bool nomax = FALSE );
- static void execDialog( QDialog*, bool nomax = FALSE );
+ static int execDialog( QDialog*, bool nomax = FALSE );
@@ -57,2 +58,11 @@ signals:
+private:
+ void initTranslations();
+ void internalSetStyle(const QString&);
+
+private:
+ class Private;
+ Private* d;
+ QCopChannel *m_sys;
+ QCopChannel *m_pid;
};