author | zecke <zecke> | 2004-09-06 10:57:48 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-09-06 10:57:48 (UTC) |
commit | 8bf99aaa1b31e770b21b7bf50407a650a8f5d646 (patch) (side-by-side diff) | |
tree | 4aadf040fb94085f54080c2b2b112ab5ff236b24 | |
parent | 97a40bb7f35a8323dd99712bf014387add283177 (diff) | |
download | opie-8bf99aaa1b31e770b21b7bf50407a650a8f5d646.zip opie-8bf99aaa1b31e770b21b7bf50407a650a8f5d646.tar.gz opie-8bf99aaa1b31e770b21b7bf50407a650a8f5d646.tar.bz2 |
GCC 2.95 compile fix for switch/case statement
-rw-r--r-- | libopie2/opiecore/device/odevice_zaurus.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp index 127fee9..64fa199 100644 --- a/libopie2/opiecore/device/odevice_zaurus.cpp +++ b/libopie2/opiecore/device/odevice_zaurus.cpp @@ -318,28 +318,31 @@ void Zaurus::buzzer ( int sound ) #ifndef QT_NO_SOUND Sound *snd = 0; // Not all devices have real sound if ( d->m_model == Model_Zaurus_SLC7x0 || d->m_model == Model_Zaurus_SLB600 ){ switch ( sound ){ - case SHARP_BUZ_TOUCHSOUND: + case SHARP_BUZ_TOUCHSOUND: { static Sound touch_sound("touchsound"); snd = &touch_sound; + } break; - case SHARP_BUZ_KEYSOUND: + case SHARP_BUZ_KEYSOUND: { static Sound key_sound( "keysound" ); snd = &key_sound; + } break; case SHARP_BUZ_SCHEDULE_ALARM: - default: + default: { static Sound alarm_sound("alarm"); snd = &alarm_sound; + } break; } } // If a soundname is defined, we expect that this device has // sound capabilities.. Otherwise we expect to have the buzzer // device.. if ( snd ){ |