Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
savoirfairelinux
jami-daemon
Commits
449c8e38
Commit
449c8e38
authored
Aug 26, 2011
by
Tristan Matthews
Browse files
* #6737: fixed typo in dbus call
parent
e58bacfd
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/managerimpl.cpp
View file @
449c8e38
...
...
@@ -2019,7 +2019,7 @@ void ManagerImpl::stopTone ()
if
(
_audiofile
)
{
std
::
string
filepath
=
_audiofile
->
getFilePath
();
_dbus
.
getCallManager
()
->
recordPlaybackStoped
(
filepath
);
_dbus
.
getCallManager
()
->
recordPlaybackStop
p
ed
(
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
()
->
recordPlaybackStop
p
ed
(
_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
()
->
recordPlaybackStop
p
ed
(
_audiofile
->
getFilePath
());
delete
_audiofile
;
_audiofile
=
NULL
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment