author | sandman <sandman> | 2002-11-17 02:32:39 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-11-17 02:32:39 (UTC) |
commit | 22108a3617e8b79acaddea61c1f7f6a0a5117306 (patch) (side-by-side diff) | |
tree | 84d896d80e1228b1c39b48cc732bb17cf9960053 /library/qpeapplication.cpp | |
parent | 9ed0a6022d4c3bcd8428096cdf28cad1e0355ab2 (diff) | |
download | opie-22108a3617e8b79acaddea61c1f7f6a0a5117306.zip opie-22108a3617e8b79acaddea61c1f7f6a0a5117306.tar.gz opie-22108a3617e8b79acaddea61c1f7f6a0a5117306.tar.bz2 |
- another QT_QWS_EBX -> QT_QWS_SHARP
- since OZ is going to use opieatd/opiealarm, we can ditch the "custom atd"
support
-rw-r--r-- | library/qpeapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 65fac84..efa65bc 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -1624,33 +1624,33 @@ void QPEApplication::hideOrQuit() // If we are a preloaded application we don't actually quit, so emit // a System message indicating we're quasi-closing. if ( d->preloaded && d->qpe_main_widget ) #ifndef QT_NO_COP { QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); e << d->appName; d->qpe_main_widget->hide(); } #endif else quit(); } -#if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) +#if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP) // 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. void* operator new[]( size_t size ) { return malloc( size ); } void* operator new( size_t size ) { return malloc( size ); } |