author | sandman <sandman> | 2002-11-19 00:58:14 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-11-19 00:58:14 (UTC) |
commit | 9581e5b0b3b4b4e36d8356f15dd33eba9cf99b31 (patch) (side-by-side diff) | |
tree | e0656e311b020954e08f2cb9abd45aba6cf7f360 | |
parent | ed81ae3a2a504c324481b85ceb24808381b5b89c (diff) | |
download | opie-9581e5b0b3b4b4e36d8356f15dd33eba9cf99b31.zip opie-9581e5b0b3b4b4e36d8356f15dd33eba9cf99b31.tar.gz opie-9581e5b0b3b4b4e36d8356f15dd33eba9cf99b31.tar.bz2 |
Removed the last QT_QWS_* in libopie .. the libopie binary should now be
interchangeable between iPAQ, OZ and retail Z (in theory ;) )
-rw-r--r-- | libopie/odevice.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 25c9826..2d2f7db 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -301,45 +301,39 @@ QString ODevice::systemVersionString ( ) const { return d-> m_sysverstr; } void ODevice::alarmSound ( ) { -#ifndef QT_QWS_EBX #ifndef QT_NO_SOUND static Sound snd ( "alarm" ); if ( snd. isFinished ( )) snd. play ( ); #endif -#endif } void ODevice::keySound ( ) { -#ifndef QT_QWS_EBX #ifndef QT_NO_SOUND static Sound snd ( "keysound" ); if ( snd. isFinished ( )) snd. play ( ); #endif -#endif } void ODevice::touchSound ( ) { -#ifndef QT_QWS_EBX #ifndef QT_NO_SOUND static Sound snd ( "touchsound" ); if ( snd. isFinished ( )) snd. play ( ); #endif -#endif } QValueList <OLed> ODevice::ledList ( ) const { return QValueList <OLed> ( ); @@ -589,13 +583,12 @@ void iPAQ::timerEvent ( QTimerEvent * ) QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); } void iPAQ::alarmSound ( ) { -#if defined( QT_QWS_IPAQ ) // IPAQ #ifndef QT_NO_SOUND static Sound snd ( "alarm" ); int fd; int vol; bool vol_reset = false; @@ -625,13 +618,12 @@ void iPAQ::alarmSound ( ) if ( fd >= 0 ) { if ( vol_reset ) ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); ::close ( fd ); } #endif -#endif } bool iPAQ::setSoftSuspend ( bool soft ) { bool res = false; |