diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | libempathy-gtk/empathy-profile-chooser.c | 2 | ||||
-rw-r--r-- | libempathy/empathy-message.c | 2 |
3 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2007-07-29 Xavier Claessens <xclaesse@gmail.com> + * libempathy-gtk/empathy-profile-chooser.c: + * libempathy/empathy-message.c: Add missing include string.h. + +2007-07-29 Xavier Claessens <xclaesse@gmail.com> + * configure.ac: Bump version to 0.11. 2007-07-29 Xavier Claessens <xclaesse@gmail.com> diff --git a/libempathy-gtk/empathy-profile-chooser.c b/libempathy-gtk/empathy-profile-chooser.c index 212869da4..6276c90b5 100644 --- a/libempathy-gtk/empathy-profile-chooser.c +++ b/libempathy-gtk/empathy-profile-chooser.c @@ -22,6 +22,8 @@ #include <config.h> +#include <string.h> + #include <gtk/gtk.h> #include <libmissioncontrol/mc-profile.h> diff --git a/libempathy/empathy-message.c b/libempathy/empathy-message.c index 0ff2567bf..02103f6ba 100644 --- a/libempathy/empathy-message.c +++ b/libempathy/empathy-message.c @@ -24,6 +24,8 @@ #include "config.h" +#include <string.h> + #include "empathy-message.h" #define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_MESSAGE, EmpathyMessagePriv)) |