From 449c8e388d69f62805a322e0adf89e504a9c362f Mon Sep 17 00:00:00 2001 From: Tristan Matthews <tristan.matthews@savoirfairelinux.com> Date: Fri, 26 Aug 2011 14:10:44 -0400 Subject: [PATCH] * #6737: fixed typo in dbus call --- daemon/src/managerimpl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daemon/src/managerimpl.cpp b/daemon/src/managerimpl.cpp index 9c570ef5d6..b36e8f23c0 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; } -- GitLab