Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
savoirfairelinux
jami-daemon
Commits
ad1962e8
Commit
ad1962e8
authored
Jan 21, 2009
by
Emmanuel Milou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix some dbus-glib implementation details on the client side
parent
4b22a26a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
sflphone-gtk/src/actions.c
sflphone-gtk/src/actions.c
+2
-0
sflphone-gtk/src/dbus.c
sflphone-gtk/src/dbus.c
+4
-3
No files found.
sflphone-gtk/src/actions.c
View file @
ad1962e8
...
...
@@ -164,6 +164,8 @@ sflphone_fill_account_list(gboolean toolbarInitialized)
{
account_t
*
a
=
account_list_get_nth
(
i
);
GHashTable
*
details
=
(
GHashTable
*
)
dbus_account_details
(
a
->
accountID
);
if
(
details
==
NULL
)
break
;
a
->
properties
=
details
;
gchar
*
status
=
g_hash_table_lookup
(
details
,
"Status"
);
...
...
sflphone-gtk/src/dbus.c
View file @
ad1962e8
...
...
@@ -177,12 +177,12 @@ dbus_connect ()
{
GError
*
error
=
NULL
;
connection
=
NULL
;
g_type_init
();
error
=
NULL
;
connection
=
dbus_g_bus_get
(
DBUS_BUS_SESSION
,
&
error
);
connection
=
dbus_g_bus_get
(
DBUS_BUS_SESSION
,
&
error
);
if
(
connection
==
NULL
)
{
g_printerr
(
"Failed to open connection to bus: %s
\n
"
,
...
...
@@ -281,6 +281,7 @@ dbus_clean ()
{
g_object_unref
(
callManagerProxy
);
g_object_unref
(
configurationManagerProxy
);
g_object_unref
(
instanceProxy
);
}
...
...
Write
Preview
Markdown
is supported
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