aboutsummaryrefslogtreecommitdiff
path: root/libindicator/indicator-desktop-shortcuts.c
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2013-04-05 13:09:02 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2013-04-05 13:09:02 +0200
commit2fba14852ae1fee3213505628ec2f5552a57a865 (patch)
tree1a5d8c5e96f838dad1e27ad8e3aa7f05ca3ba389 /libindicator/indicator-desktop-shortcuts.c
parentffbb3c1a57823568a8a5af27986624ff19b724b1 (diff)
downloadlibayatana-indicator-2fba14852ae1fee3213505628ec2f5552a57a865.tar.gz
libayatana-indicator-2fba14852ae1fee3213505628ec2f5552a57a865.tar.bz2
libayatana-indicator-2fba14852ae1fee3213505628ec2f5552a57a865.zip
IndicatorDestkopShortcuts: add indicator_desktop_shortcuts_nick_exec_with_context
It allows to pass a GAppLaunchContext to pass platform-data when launching actions.
Diffstat (limited to 'libindicator/indicator-desktop-shortcuts.c')
-rw-r--r--libindicator/indicator-desktop-shortcuts.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/libindicator/indicator-desktop-shortcuts.c b/libindicator/indicator-desktop-shortcuts.c
index 0a4e026..12a9b0c 100644
--- a/libindicator/indicator-desktop-shortcuts.c
+++ b/libindicator/indicator-desktop-shortcuts.c
@@ -567,7 +567,7 @@ indicator_desktop_shortcuts_nick_get_name (IndicatorDesktopShortcuts * ids, cons
Return value: #TRUE on success or #FALSE on error.
*/
gboolean
-indicator_desktop_shortcuts_nick_exec (IndicatorDesktopShortcuts * ids, const gchar * nick)
+indicator_desktop_shortcuts_nick_exec_with_context (IndicatorDesktopShortcuts * ids, const gchar * nick, GAppLaunchContext * launch_context)
{
GError * error = NULL;
@@ -654,7 +654,7 @@ indicator_desktop_shortcuts_nick_exec (IndicatorDesktopShortcuts * ids, const gc
return FALSE;
}
- gboolean launched = g_app_info_launch(G_APP_INFO(appinfo), NULL, NULL, &error);
+ gboolean launched = g_app_info_launch(G_APP_INFO(appinfo), NULL, launch_context, &error);
if (error != NULL) {
g_warning("Unable to launch file from nick '%s': %s", nick, error->message);
@@ -668,3 +668,9 @@ indicator_desktop_shortcuts_nick_exec (IndicatorDesktopShortcuts * ids, const gc
return launched;
}
+
+gboolean
+indicator_desktop_shortcuts_nick_exec (IndicatorDesktopShortcuts * ids, const gchar * nick)
+{
+ return indicator_desktop_shortcuts_nick_exec_with_context (ids, nick, NULL);
+}