author | zecke <zecke> | 2003-10-07 13:03:51 (UTC) |
---|---|---|
committer | zecke <zecke> | 2003-10-07 13:03:51 (UTC) |
commit | 2ffa87f9e7f7f5c3db3f18880aa1040e870b2ba7 (patch) (unidiff) | |
tree | 05d7a3b407325fe71dce9ea23b817decd0403ea4 /x11 | |
parent | 75f35445e9f3ec2f730f779d67f4189296bd9c5e (diff) | |
download | opie-2ffa87f9e7f7f5c3db3f18880aa1040e870b2ba7.zip opie-2ffa87f9e7f7f5c3db3f18880aa1040e870b2ba7.tar.gz opie-2ffa87f9e7f7f5c3db3f18880aa1040e870b2ba7.tar.bz2 |
use OPIE_NEW_MALLOC as well
-rw-r--r-- | x11/libqpe-x11/qpe/qpeapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.cpp b/x11/libqpe-x11/qpe/qpeapplication.cpp index eb01e50..0a98481 100644 --- a/x11/libqpe-x11/qpe/qpeapplication.cpp +++ b/x11/libqpe-x11/qpe/qpeapplication.cpp | |||
@@ -750,17 +750,17 @@ int QPEApplication::x11ClientMessage(QWidget* w, XEvent* event, bool b ) { | |||
750 | } | 750 | } |
751 | } | 751 | } |
752 | return QApplication::x11ClientMessage(w, event, b ); | 752 | return QApplication::x11ClientMessage(w, event, b ); |
753 | } | 753 | } |
754 | 754 | ||
755 | #define KeyPress XKeyPress | 755 | #define KeyPress XKeyPress |
756 | #define KeyRelease XKeyRelease | 756 | #define KeyRelease XKeyRelease |
757 | 757 | ||
758 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SL5XXX) | 758 | #if defined(OPIE_NEW_MALLOC) |
759 | 759 | ||
760 | // The libraries with the skiff package (and possibly others) have | 760 | // The libraries with the skiff package (and possibly others) have |
761 | // completely useless implementations of builtin new and delete that | 761 | // completely useless implementations of builtin new and delete that |
762 | // use about 50% of your CPU. Here we revert to the simple libc | 762 | // use about 50% of your CPU. Here we revert to the simple libc |
763 | // functions. | 763 | // functions. |
764 | 764 | ||
765 | void* operator new[]( size_t size ) | 765 | void* operator new[]( size_t size ) |
766 | { | 766 | { |