author | llornkcor <llornkcor> | 2002-07-01 01:48:02 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-07-01 01:48:02 (UTC) |
commit | d538fa9811906117a3ea68e3d434a1de7f46fc67 (patch) (side-by-side diff) | |
tree | e04353bad0cc4edd64d950c4c60d3bfdf45dbed6 | |
parent | 9c51797971bf5ec9dc6c4d7704b44672aa00741c (diff) | |
download | opie-d538fa9811906117a3ea68e3d434a1de7f46fc67.zip opie-d538fa9811906117a3ea68e3d434a1de7f46fc67.tar.gz opie-d538fa9811906117a3ea68e3d434a1de7f46fc67.tar.bz2 |
take out debugs
-rw-r--r-- | libopie/odevice.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index dea24a8..9931684 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -141,68 +141,68 @@ OSystem ODevice::system ( ) } 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" ); -qDebug("touchSound"); +//qDebug("touchSound"); if ( snd. isFinished ( )) { snd. play ( ); - qDebug("sound should play"); +// qDebug("sound should play"); } #endif #endif } uint ODevice::hasLeds ( ) const { return 0; } OLedState ODevice::led ( uint /*which*/ ) const { return OLED_Off; } bool ODevice::setLed ( uint /*which*/, OLedState /*st*/ ) { return false; } //#if defined( QT_QWS_IPAQ ) // IPAQ void ODeviceIPAQ::init ( ) { d-> m_vendorstr = "HP"; d-> m_vendor = OVENDOR_HP; QFile f ( "/proc/hal/model" ); |