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
2a66642a
Commit
2a66642a
authored
Aug 13, 2013
by
Tristan Matthews
Browse files
* #28351: network manager: use range-based for
parent
0f69b02c
Changes
1
Hide whitespace changes
Inline
Side-by-side
daemon/src/client/dbus/networkmanager.cpp
View file @
2a66642a
...
...
@@ -52,9 +52,8 @@ void NetworkManager::StateChanged(const uint32_t &state)
void
NetworkManager
::
PropertiesChanged
(
const
std
::
map
<
std
::
string
,
::
DBus
::
Variant
>
&
argin0
)
{
WARN
(
"Properties changed: "
);
for
(
std
::
map
<
std
::
string
,
::
DBus
::
Variant
>::
const_iterator
iter
=
argin0
.
begin
();
iter
!=
argin0
.
end
();
++
iter
)
WARN
(
"%s"
,
iter
->
first
.
c_str
());
for
(
const
auto
&
iter
:
argin0
)
WARN
(
"%s"
,
iter
.
first
.
c_str
());
Manager
::
instance
().
registerAccounts
();
}
...
...
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