diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-07-30 05:33:23 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-07-30 05:33:23 +0800 |
commit | b1e17a3ae2ad51f4dc6df98970a6c169d79575c2 (patch) | |
tree | a459599a243ae47b3ca3619ca88f723aacadc316 | |
parent | a7375e6b2eea6743d9032d14f537c66c2709f605 (diff) | |
download | gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar.gz gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar.bz2 gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar.lz gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar.xz gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.tar.zst gsoc2013-empathy-b1e17a3ae2ad51f4dc6df98970a6c169d79575c2.zip |
Add missing include string.h.
2007-07-29 Xavier Claessens <xclaesse@gmail.com>
* libempathy-gtk/empathy-profile-chooser.c:
* libempathy/empathy-message.c: Add missing include string.h.
svn path=/trunk/; revision=217
-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)) |