diff --git a/daemon/src/managerimpl.cpp b/daemon/src/managerimpl.cpp index 9c570ef5d6f6a49ede801ef31b69a362298514ff..b36e8f23c043ea51a48add98615fdb64af3b84ef 100644 --- a/daemon/src/managerimpl.cpp +++ b/daemon/src/managerimpl.cpp @@ -2019,7 +2019,7 @@ void ManagerImpl::stopTone () if (_audiofile) { std::string filepath = _audiofile->getFilePath(); - _dbus.getCallManager()->recordPlaybackStoped(filepath); + _dbus.getCallManager()->recordPlaybackStopped(filepath); delete _audiofile; _audiofile = NULL; } @@ -2099,7 +2099,7 @@ void ManagerImpl::ringtone (const std::string& accountID) _toneMutex.enterMutex(); if (_audiofile) { - _dbus.getCallManager()->recordPlaybackStoped(_audiofile->getFilePath()); + _dbus.getCallManager()->recordPlaybackStopped(_audiofile->getFilePath()); delete _audiofile; _audiofile = NULL; } @@ -2511,7 +2511,7 @@ bool ManagerImpl::startRecordedFilePlayback(const std::string& filepath) _toneMutex.enterMutex(); if (_audiofile) { - _dbus.getCallManager()->recordPlaybackStoped(_audiofile->getFilePath()); + _dbus.getCallManager()->recordPlaybackStopped(_audiofile->getFilePath()); delete _audiofile; _audiofile = NULL; }