diff -r 1f895d8a5b2b -r 46686fb6258c qtmobileextensions/src/systemtoneservice/xqsystemtoneservice_p.cpp --- a/qtmobileextensions/src/systemtoneservice/xqsystemtoneservice_p.cpp Tue Jul 06 15:12:50 2010 +0300 +++ b/qtmobileextensions/src/systemtoneservice/xqsystemtoneservice_p.cpp Wed Aug 18 10:38:12 2010 +0300 @@ -61,6 +61,16 @@ } } +unsigned int XQSystemToneServicePrivate::playAlarm(XQSystemToneService::ToneType toneType) +{ + unsigned int ctx = 0; + if (sts) { + sts->PlayAlarm(mapToneType(toneType), ctx, *this); + emit q_ptr->alarmStarted(ctx); + } + return ctx; +} + CSystemToneService::TToneType XQSystemToneServicePrivate::mapToneType(XQSystemToneService::ToneType toneType) { return static_cast(toneType);