-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() | |||
1624 | 1624 | ||
1625 | // If we are a preloaded application we don't actually quit, so emit | 1625 | // If we are a preloaded application we don't actually quit, so emit |
1626 | // a System message indicating we're quasi-closing. | 1626 | // a System message indicating we're quasi-closing. |
1627 | if ( d->preloaded && d->qpe_main_widget ) | 1627 | if ( d->preloaded && d->qpe_main_widget ) |
1628 | #ifndef QT_NO_COP | 1628 | #ifndef QT_NO_COP |
1629 | 1629 | ||
1630 | { | 1630 | { |
1631 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); | 1631 | QCopEnvelope e("QPE/System", "fastAppHiding(QString)" ); |
1632 | e << d->appName; | 1632 | e << d->appName; |
1633 | d->qpe_main_widget->hide(); | 1633 | d->qpe_main_widget->hide(); |
1634 | } | 1634 | } |
1635 | #endif | 1635 | #endif |
1636 | else | 1636 | else |
1637 | quit(); | 1637 | quit(); |
1638 | } | 1638 | } |
1639 | 1639 | ||
1640 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_EBX) | 1640 | #if defined(QT_QWS_IPAQ) || defined(QT_QWS_SHARP) |
1641 | 1641 | ||
1642 | // The libraries with the skiff package (and possibly others) have | 1642 | // The libraries with the skiff package (and possibly others) have |
1643 | // completely useless implementations of builtin new and delete that | 1643 | // completely useless implementations of builtin new and delete that |
1644 | // use about 50% of your CPU. Here we revert to the simple libc | 1644 | // use about 50% of your CPU. Here we revert to the simple libc |
1645 | // functions. | 1645 | // functions. |
1646 | 1646 | ||
1647 | void* operator new[]( size_t size ) | 1647 | void* operator new[]( size_t size ) |
1648 | { | 1648 | { |
1649 | return malloc( size ); | 1649 | return malloc( size ); |
1650 | } | 1650 | } |
1651 | 1651 | ||
1652 | void* operator new( size_t size ) | 1652 | void* operator new( size_t size ) |
1653 | { | 1653 | { |
1654 | return malloc( size ); | 1654 | return malloc( size ); |
1655 | } | 1655 | } |
1656 | 1656 | ||