author | zecke <zecke> | 2002-10-16 01:09:22 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-10-16 01:09:22 (UTC) |
commit | 543e54de7170c606b6883ac4152567e7faf13182 (patch) (unidiff) | |
tree | 8a7d623e96cab0135a2f7cb11aa9f7491bfda9a2 /library/tzselect.cpp | |
parent | 3e973543b77631d053a9616b5540966dbe51ab47 (diff) | |
download | opie-543e54de7170c606b6883ac4152567e7faf13182.zip opie-543e54de7170c606b6883ac4152567e7faf13182.tar.gz opie-543e54de7170c606b6883ac4152567e7faf13182.tar.bz2 |
Remove #ifdef QWS HELL
a Platform which is not supporting IPC compatible
to QCopChannel/Envelope is not of much use nowadays..
so be sure your platform is supporting it
-rw-r--r-- | library/tzselect.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/library/tzselect.cpp b/library/tzselect.cpp index 9436867..2e5a433 100644 --- a/library/tzselect.cpp +++ b/library/tzselect.cpp | |||
@@ -28,9 +28,7 @@ | |||
28 | #include <qfile.h> | 28 | #include <qfile.h> |
29 | #include <stdlib.h> | 29 | #include <stdlib.h> |
30 | 30 | ||
31 | #ifdef Q_WS_QWS | ||
32 | #include <qcopchannel_qws.h> | 31 | #include <qcopchannel_qws.h> |
33 | #endif | ||
34 | 32 | ||
35 | class TimeZoneSelectorPrivate | 33 | class TimeZoneSelectorPrivate |
36 | { | 34 | { |
@@ -68,13 +66,11 @@ TZCombo::TZCombo( QWidget *p, const char* n ) | |||
68 | 66 | ||
69 | 67 | ||
70 | // listen on QPE/System | 68 | // listen on QPE/System |
71 | #if defined(Q_WS_QWS) | ||
72 | #if !defined(QT_NO_COP) | 69 | #if !defined(QT_NO_COP) |
73 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); | 70 | QCopChannel *channel = new QCopChannel( "QPE/System", this ); |
74 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), | 71 | connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), |
75 | this, SLOT(handleSystemChannel(const QCString&, const QByteArray&)) ); | 72 | this, SLOT(handleSystemChannel(const QCString&, const QByteArray&)) ); |
76 | #endif | 73 | #endif |
77 | #endif | ||
78 | 74 | ||
79 | 75 | ||
80 | } | 76 | } |