-rw-r--r-- | core/launcher/desktop.cpp | 4 | ||||
-rw-r--r-- | core/launcher/launcher.cpp | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 1fd3f6a..3546e28 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp | |||
@@ -375,7 +375,6 @@ DesktopApplication::~DesktopApplication() | |||
375 | 375 | ||
376 | void DesktopApplication::desktopMessage( const QCString &msg, const QByteArray &data ) | 376 | void DesktopApplication::desktopMessage( const QCString &msg, const QByteArray &data ) |
377 | { | 377 | { |
378 | #ifdef Q_WS_QWS | ||
379 | QDataStream stream( data, IO_ReadOnly ); | 378 | QDataStream stream( data, IO_ReadOnly ); |
380 | if ( msg == "keyRegister(int key, QString channel, QString message)" ) { | 379 | if ( msg == "keyRegister(int key, QString channel, QString message)" ) { |
381 | int k; | 380 | int k; |
@@ -387,13 +386,11 @@ void DesktopApplication::desktopMessage( const QCString &msg, const QByteArray & | |||
387 | qWarning( "KeyRegisterReceived: %i, %s, %s", k, ( const char* ) c, ( const char * ) m ); | 386 | qWarning( "KeyRegisterReceived: %i, %s, %s", k, ( const char* ) c, ( const char * ) m ); |
388 | keyRegisterList.append( QCopKeyRegister( k, c, m ) ); | 387 | keyRegisterList.append( QCopKeyRegister( k, c, m ) ); |
389 | } | 388 | } |
390 | #endif | ||
391 | } | 389 | } |
392 | 390 | ||
393 | 391 | ||
394 | void DesktopApplication::systemMessage( const QCString & msg, const QByteArray & data ) | 392 | void DesktopApplication::systemMessage( const QCString & msg, const QByteArray & data ) |
395 | { | 393 | { |
396 | #ifdef Q_WS_QWS | ||
397 | QDataStream stream ( data, IO_ReadOnly ); | 394 | QDataStream stream ( data, IO_ReadOnly ); |
398 | 395 | ||
399 | if ( msg == "setScreenSaverInterval(int)" ) { | 396 | if ( msg == "setScreenSaverInterval(int)" ) { |
@@ -424,7 +421,6 @@ void DesktopApplication::systemMessage( const QCString & msg, const QByteArray & | |||
424 | else if ( msg == "suspend()" ) { | 421 | else if ( msg == "suspend()" ) { |
425 | emit power(); | 422 | emit power(); |
426 | } | 423 | } |
427 | #endif | ||
428 | } | 424 | } |
429 | 425 | ||
430 | enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown; | 426 | enum MemState { Unknown, VeryLow, Low, Normal } memstate = Unknown; |
diff --git a/core/launcher/launcher.cpp b/core/launcher/launcher.cpp index a5955a4..5a9ee1b 100644 --- a/core/launcher/launcher.cpp +++ b/core/launcher/launcher.cpp | |||
@@ -624,7 +624,7 @@ Launcher::Launcher( QWidget* parent, const char* name, WFlags fl ) | |||
624 | connect( tabs, SIGNAL(rightPressed(AppLnk*)), | 624 | connect( tabs, SIGNAL(rightPressed(AppLnk*)), |
625 | this, SLOT(properties(AppLnk*))); | 625 | this, SLOT(properties(AppLnk*))); |
626 | 626 | ||
627 | #if defined(Q_WS_QWS) && !defined(QT_NO_COP) | 627 | #if !defined(QT_NO_COP) |
628 | QCopChannel* sysChannel = new QCopChannel( "QPE/System", this ); | 628 | QCopChannel* sysChannel = new QCopChannel( "QPE/System", this ); |
629 | connect( sysChannel, SIGNAL(received(const QCString &, const QByteArray &)), | 629 | connect( sysChannel, SIGNAL(received(const QCString &, const QByteArray &)), |
630 | this, SLOT(systemMessage( const QCString &, const QByteArray &)) ); | 630 | this, SLOT(systemMessage( const QCString &, const QByteArray &)) ); |