-rw-r--r-- | core/launcher/serverapp.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/launcher/serverapp.cpp b/core/launcher/serverapp.cpp index e18bcee..11381e6 100644 --- a/core/launcher/serverapp.cpp +++ b/core/launcher/serverapp.cpp @@ -20,7 +20,7 @@ #include "serverapp.h" -#include <opie/odevice.h> +#include <opie2/odevice.h> #include <qtopia/password.h> #include <qtopia/config.h> @@ -826,19 +826,19 @@ bool ServerApplication::recoverMemory() void ServerApplication::keyClick(int , bool press, bool ) { if ( press && m_keyclick_sound ) - ODevice::inst() -> keySound(); + ODevice::inst() -> playKeySound(); } void ServerApplication::screenClick(bool press) { if ( press && m_screentap_sound ) - ODevice::inst() -> touchSound(); + ODevice::inst() -> playTouchSound(); } void ServerApplication::soundAlarm() { if ( me ()->m_alarm_sound ) - ODevice::inst()->alarmSound(); + ODevice::inst()->playAlarmSound(); } ServerApplication *ServerApplication::me ( ) |