diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-08-09 17:33:14 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-08-09 17:33:14 +0800 |
commit | 6ea315bb4bd85abbc4a7180d7cbca5b3eba92411 (patch) | |
tree | 8013682155c9f51096835ec11ae964e861975f3d /libempathy/empathy-presence.c | |
parent | 19be685ee72af7024847e6db5eb503a42bab9093 (diff) | |
download | gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar.gz gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar.bz2 gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar.lz gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar.xz gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.tar.zst gsoc2013-empathy-6ea315bb4bd85abbc4a7180d7cbca5b3eba92411.zip |
Remove workaround for mc-enum-types.h not being installed by MC and bump
2007-08-09 Xavier Claessens <xclaesse@gmail.com>
* libempathy/empathy-presence.c:
* libempathy/empathy-idle.c:
* configure.ac: Remove workaround for mc-enum-types.h not being
installed by MC and bump MC minimal version to 4.33.
svn path=/trunk/; revision=239
Diffstat (limited to 'libempathy/empathy-presence.c')
-rw-r--r-- | libempathy/empathy-presence.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/libempathy/empathy-presence.c b/libempathy/empathy-presence.c index 136dce36a..42c7f936b 100644 --- a/libempathy/empathy-presence.c +++ b/libempathy/empathy-presence.c @@ -26,17 +26,11 @@ #include <glib/gi18n.h> +#include <libmissioncontrol/mc-enum-types.h> + #include "empathy-presence.h" #include "empathy-time.h" -/* FIXME mission-control does not install libmissioncontrol/mc-enum-types.h so - * we have to define MC_TYPE_PRESENCE here. See sf.net bug #1768235, - * https://sf.net/tracker/?func=detail&atid=932444&aid=1768235&group_id=190214 */ -#ifndef MC_TYPE_PRESENCE -GType mc_presence_get_type (void) G_GNUC_CONST; -#define MC_TYPE_PRESENCE (mc_presence_get_type()) -#endif - #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_PRESENCE, EmpathyPresencePriv)) typedef struct _EmpathyPresencePriv EmpathyPresencePriv; |