diff options
author | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-05-31 03:15:31 +0800 |
---|---|---|
committer | Sjoerd Simons <sjoerd.simons@collabora.co.uk> | 2009-05-31 04:15:42 +0800 |
commit | 327b8e56ecbaca67d550802f2fac741a78d81eb8 (patch) | |
tree | 62b8a9f51ecdcbfeae7dcdef81c4420d65a7aedc /libempathy/empathy-status-presets.h | |
parent | f93b95e549591cc8302d894e44641f42751b7f67 (diff) | |
download | gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar.gz gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar.bz2 gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar.lz gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar.xz gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.tar.zst gsoc2013-empathy-327b8e56ecbaca67d550802f2fac741a78d81eb8.zip |
Remove usage of McPresence as much as possible
Diffstat (limited to 'libempathy/empathy-status-presets.h')
-rw-r--r-- | libempathy/empathy-status-presets.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libempathy/empathy-status-presets.h b/libempathy/empathy-status-presets.h index e562ada43..335dbcfcb 100644 --- a/libempathy/empathy-status-presets.h +++ b/libempathy/empathy-status-presets.h @@ -23,21 +23,21 @@ #ifndef __EMPATHY_STATUS_PRESETS_H__ #define __EMPATHY_STATUS_PRESETS_H__ -#include <libmissioncontrol/mission-control.h> +#include <telepathy-glib/enums.h> G_BEGIN_DECLS void empathy_status_presets_get_all (void); -GList * empathy_status_presets_get (McPresence state, +GList * empathy_status_presets_get (TpConnectionPresenceType state, gint max_number); -void empathy_status_presets_set_last (McPresence state, +void empathy_status_presets_set_last (TpConnectionPresenceType state, const gchar *status); -void empathy_status_presets_remove (McPresence state, +void empathy_status_presets_remove (TpConnectionPresenceType state, const gchar *status); void empathy_status_presets_reset (void); -McPresence empathy_status_presets_get_default_state (void); +TpConnectionPresenceType empathy_status_presets_get_default_state (void); const gchar * empathy_status_presets_get_default_status (void); -void empathy_status_presets_set_default (McPresence state, +void empathy_status_presets_set_default (TpConnectionPresenceType state, const gchar *status); void empathy_status_presets_clear_default (void); |