-rw-r--r-- | core/launcher/desktop.cpp | 2 | ||||
-rw-r--r-- | core/launcher/main.cpp | 2 | ||||
-rw-r--r-- | core/launcher/taskbar.cpp | 4 | ||||
-rw-r--r-- | library/power.cpp | 2 | ||||
-rw-r--r-- | library/qpeapplication.cpp | 10 | ||||
-rw-r--r-- | library/storage.cpp | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 6def126..067a167 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp @@ -39,13 +39,13 @@ #include <qpe/power.h> #include <qpe/timeconversion.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/network.h> #include <qpe/global.h> -#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) +#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) || defined(QT_QWS_RAMSES) #include <qpe/custom.h> #endif #include <opie/odevice.h> #include <qgfx_qws.h> diff --git a/core/launcher/main.cpp b/core/launcher/main.cpp index 20a1ecd..69a7fea 100644 --- a/core/launcher/main.cpp +++ b/core/launcher/main.cpp @@ -22,13 +22,13 @@ #include "taskbar.h" #include "stabmon.h" #include <qpe/qpeapplication.h> #include <qpe/network.h> #include <qpe/config.h> -#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) +#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) || defined (QT_QWS_RAMSES) #include <qpe/custom.h> #endif #include <opie/odevice.h> #include <qmessagebox.h> diff --git a/core/launcher/taskbar.cpp b/core/launcher/taskbar.cpp index feeba79..e8a81c3 100644 --- a/core/launcher/taskbar.cpp +++ b/core/launcher/taskbar.cpp @@ -30,13 +30,13 @@ #include "desktop.h" #include <qpe/qpeapplication.h> #include <qpe/qcopenvelope_qws.h> #include <qpe/global.h> -#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) +#if defined( QT_QWS_SL5XXX ) || defined( QT_QWS_IPAQ ) || defined( QT_QWS_RAMSES) #include <qpe/custom.h> #endif #include <opie/odevice.h> #include <qlabel.h> @@ -52,13 +52,13 @@ using namespace Opie; static Global::Command builtins[] = { -#if defined(QT_QWS_IPAQ) || defined(QT_QWS_CASSIOPEIA) || defined(QT_QWS_SL5XXX) +#if defined(QT_QWS_IPAQ) || defined(QT_QWS_CASSIOPEIA) || defined(QT_QWS_SL5XXX) || defined(QT_QWS_RAMSES) { "calibrate", TaskBar::calibrate, 1, 0 }, #endif #if !defined(QT_QWS_CASSIOPEIA) { "shutdown", Global::shutdown, 1, 0 }, // { "run", run, 1, 0 }, #endif diff --git a/library/power.cpp b/library/power.cpp index 5310b47..e7e5b24 100644 --- a/library/power.cpp +++ b/library/power.cpp @@ -17,13 +17,13 @@ ** not clear to you. ** **********************************************************************/ #include "power.h" -#ifdef QT_QWS_SL5XXX +#if defined(QT_QWS_SL5XXX) || defined(QT_QWS_RAMSES) #include "custom.h" #endif #include <unistd.h> #include <stdlib.h> #include <stdio.h> diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 22d222a..4bc08b3 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -149,17 +149,17 @@ public: { // ugly hack, remove that later after finding a sane solution // Addendum: Only Sharp currently has models with high resolution but (physically) small displays, // so this is only useful if QT_QWS_SHARP is defined. E.g. SIMpad has 800x600 but has // a (physically) large enough display to use the small icons - #ifdef QT_QWS_SHARP +#ifdef QT_QWS_SHARP if ( QPEApplication::desktop() ->width() >= 600 && ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) ) { ( ( QMainWindow* ) mw )->setUsesBigPixmaps( true ); } - #endif +#endif if ( mw->layout() && mw->inherits("QDialog") ) { QPEApplication::showDialog((QDialog*)mw, nomaximize); } else { #ifdef Q_WS_QWS @@ -524,19 +524,19 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) if ( dw < 200 ) { setFont( QFont( "vera", 8 ) ); AppLnk::setSmallIconSize( 10 ); AppLnk::setBigIconSize( 28 ); } - #ifdef QT_QWS_SHARP +#ifdef QT_QWS_SHARP else if ( dw > 600 ) { setFont( QFont( "vera", 16 ) ); AppLnk::setSmallIconSize( 24 ); AppLnk::setBigIconSize( 48 ); } - #endif +#endif else if ( dw > 200 ) { setFont( QFont( "vera", 10 ) ); AppLnk::setSmallIconSize( 14 ); AppLnk::setBigIconSize( 32 ); } @@ -1756,13 +1756,13 @@ void QPEApplication::hideOrQuit() #endif else quit(); } -#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) +#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) || defined(QT_QWS_RAMSES) // The libraries with the skiff package (and possibly others) have // completely useless implementations of builtin new and delete that // use about 50% of your CPU. Here we revert to the simple libc // functions. diff --git a/library/storage.cpp b/library/storage.cpp index 12f9df9..4e07ec6 100644 --- a/library/storage.cpp +++ b/library/storage.cpp @@ -18,13 +18,13 @@ ** Contact info@trolltech.com if any conditions of this licensing are ** not clear to you. ** **********************************************************************/ #include <qpe/storage.h> -#ifdef QT_QWS_SL5XXX +#if defined(QT_QWS_SL5XXX) #include <qpe/custom.h> #endif #include <qfile.h> #include <qtimer.h> #include <qcopchannel_qws.h> |