author | sandman <sandman> | 2002-11-17 02:32:39 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-11-17 02:32:39 (UTC) |
commit | 22108a3617e8b79acaddea61c1f7f6a0a5117306 (patch) (unidiff) | |
tree | 84d896d80e1228b1c39b48cc732bb17cf9960053 | |
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/alarmserver.cpp | 11 | ||||
-rw-r--r-- | library/qpeapplication.cpp | 2 |
2 files changed, 2 insertions, 11 deletions
diff --git a/library/alarmserver.cpp b/library/alarmserver.cpp index 7e6e515..5e4dd18 100644 --- a/library/alarmserver.cpp +++ b/library/alarmserver.cpp | |||
@@ -147,34 +147,25 @@ void AlarmServer::initialize() | |||
147 | } | 147 | } |
148 | } | 148 | } |
149 | 149 | ||
150 | 150 | ||
151 | 151 | ||
152 | 152 | ||
153 | static const char* atdir = "/var/spool/at/"; | 153 | static const char* atdir = "/var/spool/at/"; |
154 | 154 | ||
155 | static bool triggerAtd( bool writeHWClock = FALSE ) | 155 | static bool triggerAtd( bool writeHWClock = FALSE ) |
156 | { | 156 | { |
157 | QFile trigger(QString(atdir) + "trigger"); | 157 | QFile trigger(QString(atdir) + "trigger"); |
158 | if ( trigger.open(IO_WriteOnly|IO_Raw) ) { | 158 | if ( trigger.open(IO_WriteOnly|IO_Raw) ) { |
159 | 159 | if ( trigger.writeBlock("\n",2) != 2 ) { | |
160 | const char* data = | ||
161 | #ifdef QT_QWS_SHARP | ||
162 | //custom atd only writes HW Clock if we write a 'W' | ||
163 | ( writeHWClock ) ? "W\n" : | ||
164 | #endif | ||
165 | data = "\n"; | ||
166 | int len = strlen(data); | ||
167 | int total_written = trigger.writeBlock(data,len); | ||
168 | if ( total_written != len ) { | ||
169 | QMessageBox::critical( 0, QObject::tr( "Out of Space" ), | 160 | QMessageBox::critical( 0, QObject::tr( "Out of Space" ), |
170 | QObject::tr( "Unable to schedule alarm.\nFree some memory and try again." ) ); | 161 | QObject::tr( "Unable to schedule alarm.\nFree some memory and try again." ) ); |
171 | trigger.close(); | 162 | trigger.close(); |
172 | QFile::remove( trigger.name() ); | 163 | QFile::remove( trigger.name() ); |
173 | return FALSE; | 164 | return FALSE; |
174 | } | 165 | } |
175 | return TRUE; | 166 | return TRUE; |
176 | } | 167 | } |
177 | return FALSE; | 168 | return FALSE; |
178 | } | 169 | } |
179 | 170 | ||
180 | void TimerReceiverObject::deleteTimer() | 171 | void TimerReceiverObject::deleteTimer() |
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 65fac84..efa65bc 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp | |||
@@ -1628,25 +1628,25 @@ void QPEApplication::hideOrQuit() | |||
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 ) |