-rw-r--r-- | library/custom-ipaq.h | 5 | ||||
-rw-r--r-- | library/custom-ramses.h | 3 | ||||
-rw-r--r-- | library/custom-sharp.h | 4 | ||||
-rw-r--r-- | library/custom-simpad.h | 4 | ||||
-rw-r--r-- | library/qpeapplication.cpp | 10 | ||||
-rw-r--r-- | library/storage.cpp | 2 |
6 files changed, 19 insertions, 9 deletions
diff --git a/library/custom-ipaq.h b/library/custom-ipaq.h index a9319fa..8321199 100644 --- a/library/custom-ipaq.h +++ b/library/custom-ipaq.h @@ -20,2 +20,5 @@ -#define QPE_NEED_CALIBRATION
\ No newline at end of file +#define QPE_NEED_CALIBRATION +#define OPIE_SOUND_FRAGMENT_SHIFT 14 +#define USE_REALTIME_AUDIO_THREAD +#define OPIE_NEW_MALLOC diff --git a/library/custom-ramses.h b/library/custom-ramses.h index 9104931..5a1abe4 100644 --- a/library/custom-ramses.h +++ b/library/custom-ramses.h @@ -23,2 +23,5 @@ #define QPE_STARTMENU +#define USE_REALTIME_AUDIO_THREAD +#define OPIE_NEW_MALLOC + diff --git a/library/custom-sharp.h b/library/custom-sharp.h index 3936875..b0e67b8 100644 --- a/library/custom-sharp.h +++ b/library/custom-sharp.h @@ -25,2 +25,6 @@ #define QPE_STARTMENU +#define OPIE_NEW_MALLOC +#define USE_REALTIME_AUDIO_THREAD +#define OPIE_NO_SOUND_PCM_READ_BITS + #include <asm/sharp_apm.h> diff --git a/library/custom-simpad.h b/library/custom-simpad.h index 3872dfd..c951296 100644 --- a/library/custom-simpad.h +++ b/library/custom-simpad.h @@ -6,2 +6,4 @@ -#define QPE_NEED_CALIBRATION
\ No newline at end of file +#define QPE_NEED_CALIBRATION +#define OPIE_NEW_MALLOC +#define USE_REALTIME_AUDIO_THREAD diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index feba8b6..cd1c62e 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -169,3 +169,3 @@ public: // a (physically) large enough display to use the small icons -#ifndef QT_QWS_SIMPAD +#if defined(OPIE_HIGH_RES_SMALL_PHY) if ( QPEApplication::desktop() ->width() >= 600 && ( mw->inherits("QMainWindow") || mw->isA("QMainWindow") ) ) { @@ -592,6 +592,6 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) } -#ifndef QT_QWS_SIMPAD +#ifndef OPIE_HIGH_RES_SMALL_PHY else if ( dw > 600 ) { - setFont( QFont( "vera", 16 ) ); - AppLnk::setSmallIconSize( 24 ); + setFont( QFont( "vera", 16 ) ); + AppLnk::setSmallIconSize( 24 ); AppLnk::setBigIconSize( 48 ); @@ -2010,3 +2010,3 @@ void __cxa_pure_virtual() -#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) || defined(QT_QWS_RAMSES) +#if defined(OPIE_NEW_MALLOC) diff --git a/library/storage.cpp b/library/storage.cpp index 1ce43bc..dc5cc22 100644 --- a/library/storage.cpp +++ b/library/storage.cpp @@ -23,5 +23,3 @@ #include <qpe/storage.h> -#if defined(QT_QWS_SL5XXX) #include <qpe/custom.h> -#endif |