diff options
author | Ćukasz 'sil2100' Zemczak <lukasz.zemczak@canonical.com> | 2013-04-22 10:13:25 +0000 |
---|---|---|
committer | Tarmac <Unknown> | 2013-04-22 10:13:25 +0000 |
commit | dbeec9ceb74e60badf4b695e8fb023fb3f70c99b (patch) | |
tree | a1b587754657336d258370096c0adaef098b2ffe | |
parent | bf04788b8464125683d422fa90468d648ab8cfb0 (diff) | |
parent | 35bf2c9320e7c62a574e80b3ed463c110dce7060 (diff) | |
download | ayatana-indicator-messages-dbeec9ceb74e60badf4b695e8fb023fb3f70c99b.tar.gz ayatana-indicator-messages-dbeec9ceb74e60badf4b695e8fb023fb3f70c99b.tar.bz2 ayatana-indicator-messages-dbeec9ceb74e60badf4b695e8fb023fb3f70c99b.zip |
indicator_desktop_shortcuts_nick_exec() is deprecated, use indicator_desktop_shortcuts_nick_exec_with_context() with a NULL context instead - fixes the FTBFS.
Approved by Didier Roche, PS Jenkins bot.
-rw-r--r-- | src/app-section.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app-section.c b/src/app-section.c index 93f59a2..474e700 100644 --- a/src/app-section.c +++ b/src/app-section.c @@ -303,7 +303,7 @@ nick_activate_cb (GSimpleAction *action, g_return_if_fail(priv->ids != NULL); - if (!indicator_desktop_shortcuts_nick_exec(priv->ids, nick)) { + if (!indicator_desktop_shortcuts_nick_exec_with_context(priv->ids, nick, NULL)) { g_warning("Unable to execute nick '%s' for desktop file '%s'", nick, g_desktop_app_info_get_filename (priv->appinfo)); } |