aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2011-07-21 19:38:26 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2011-07-21 19:38:26 +0200
commitf1a30384cb3e5a2369adc7c610bb300d2057c3ad (patch)
treedf185402770510c28f7d051c00861e9cf41bca1f
parent7cd70567cf7c2f1423416513777b85c2efc93c31 (diff)
downloadayatana-indicator-application-f1a30384cb3e5a2369adc7c610bb300d2057c3ad.tar.gz
ayatana-indicator-application-f1a30384cb3e5a2369adc7c610bb300d2057c3ad.tar.bz2
ayatana-indicator-application-f1a30384cb3e5a2369adc7c610bb300d2057c3ad.zip
Use g_variant_new_uint32 as we just have one parameter
-rw-r--r--src/application-service-appstore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application-service-appstore.c b/src/application-service-appstore.c
index 09c2a99..b8c1950 100644
--- a/src/application-service-appstore.c
+++ b/src/application-service-appstore.c
@@ -306,7 +306,7 @@ bus_method_call (GDBusConnection * connection, const gchar * sender,
if (app != NULL && app->dbus_proxy != NULL) {
g_dbus_proxy_call(app->dbus_proxy, "XAyatanaSecondaryActivate",
- g_variant_new("(u)", time),
+ g_variant_new_uint32 (time),
G_DBUS_CALL_FLAGS_NONE, -1, NULL, NULL, NULL);
}
} else {