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
c9f38b0e
Commit
c9f38b0e
authored
Aug 14, 2013
by
Tristan Matthews
Browse files
* #28351: managerimpl: use item instead of iter
parent
cacbed04
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/managerimpl.cpp
View file @
c9f38b0e
...
@@ -1352,8 +1352,8 @@ void ManagerImpl::addStream(const std::string& call_id)
...
@@ -1352,8 +1352,8 @@ void ManagerImpl::addStream(const std::string& call_id)
ParticipantSet
participants
(
conf
->
getParticipantList
());
ParticipantSet
participants
(
conf
->
getParticipantList
());
// reset ring buffer for all conference participant
// reset ring buffer for all conference participant
for
(
const
auto
&
iter_p
:
participants
)
for
(
const
auto
&
participant
:
participants
)
getMainBuffer
().
flush
(
iter_p
);
getMainBuffer
().
flush
(
participant
);
getMainBuffer
().
flush
(
MainBuffer
::
DEFAULT_ID
);
getMainBuffer
().
flush
(
MainBuffer
::
DEFAULT_ID
);
}
}
...
@@ -2936,8 +2936,8 @@ ManagerImpl::registerAccounts()
...
@@ -2936,8 +2936,8 @@ ManagerImpl::registerAccounts()
{
{
AccountMap
allAccounts
(
getAllAccounts
());
AccountMap
allAccounts
(
getAllAccounts
());
for
(
auto
&
ite
r
:
allAccounts
)
{
for
(
auto
&
ite
m
:
allAccounts
)
{
Account
*
a
=
ite
r
.
second
;
Account
*
a
=
ite
m
.
second
;
if
(
!
a
)
if
(
!
a
)
continue
;
continue
;
...
...
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