~ubuntu-branches/ubuntu/trusty/libindicator/trusty-proposed

« back to all changes in this revision

Viewing changes to libindicator/indicator-desktop-shortcuts.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-05-02 22:59:05 UTC
  • mfrom: (1.1.45)
  • Revision ID: package-import@ubuntu.com-20130502225905-cccacbl1790cvcje
Tags: 12.10.2daily13.05.02-0ubuntu1
Automatic snapshot from revision 487

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        GObject parent;
62
62
};
63
63
 
64
 
GType                       indicator_desktop_shortcuts_get_type         (void);
65
 
IndicatorDesktopShortcuts * indicator_desktop_shortcuts_new              (const gchar * file,
66
 
                                                                          const gchar * identity);
67
 
const gchar **              indicator_desktop_shortcuts_get_nicks        (IndicatorDesktopShortcuts * ids);
68
 
gchar *                     indicator_desktop_shortcuts_nick_get_name    (IndicatorDesktopShortcuts * ids,
69
 
                                                                          const gchar * nick);
 
64
GType                       indicator_desktop_shortcuts_get_type               (void);
 
65
IndicatorDesktopShortcuts * indicator_desktop_shortcuts_new                    (const gchar * file,
 
66
                                                                                const gchar * identity);
 
67
const gchar **              indicator_desktop_shortcuts_get_nicks              (IndicatorDesktopShortcuts * ids);
 
68
gchar *                     indicator_desktop_shortcuts_nick_get_name          (IndicatorDesktopShortcuts * ids,
 
69
                                                                                const gchar * nick);
70
70
gboolean                    indicator_desktop_shortcuts_nick_exec_with_context (IndicatorDesktopShortcuts * ids,
71
71
                                                                                const gchar * nick,
72
72
                                                                                GAppLaunchContext * launch_context);
73
 
gboolean                    indicator_desktop_shortcuts_nick_exec        (IndicatorDesktopShortcuts * ids,
74
 
                                                                          const gchar * nick);
 
73
 
 
74
GLIB_DEPRECATED_FOR(indicator_desktop_shortcuts_nick_exec_with_context)
 
75
gboolean                    indicator_desktop_shortcuts_nick_exec              (IndicatorDesktopShortcuts * ids,
 
76
                                                                                const gchar * nick);
75
77
 
76
78
G_END_DECLS
77
79