aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2007-07-30 05:33:23 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2007-07-30 05:33:23 +0800
commitb1e17a3ae2ad51f4dc6df98970a6c169d79575c2 (patch)
treea459599a243ae47b3ca3619ca88f723aacadc316
parenta7375e6b2eea6743d9032d14f537c66c2709f605 (diff)
downloadgsoc2013-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--ChangeLog5
-rw-r--r--libempathy-gtk/empathy-profile-chooser.c2
-rw-r--r--libempathy/empathy-message.c2
3 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e6e6d080f..df54c9d00 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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))