diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2011-07-21 19:38:26 +0200 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2011-07-21 19:38:26 +0200 |
commit | f1a30384cb3e5a2369adc7c610bb300d2057c3ad (patch) | |
tree | df185402770510c28f7d051c00861e9cf41bca1f | |
parent | 7cd70567cf7c2f1423416513777b85c2efc93c31 (diff) | |
download | ayatana-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.c | 2 |
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 { |