summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2013-02-19 12:05:08 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2013-02-19 12:05:08 +0100
commit143344d94dd6b02ba5a2a164161de6acb21d8872 (patch)
tree04e90158e1a5bdd2ca990b7367c462202a676b85
parent7faef689cc184e6598f3e2a160bf1e3bbe05146c (diff)
downloadatk-143344d94dd6b02ba5a2a164161de6acb21d8872.tar.gz
atkobject: add a explicit include to locale.h
Bug 694117 add a default implementation for atk_object_get_object_locale that uses setlocale. It was reported that in some environments compilation fails due the lack of the explicit include to locale.h.
-rwxr-xr-xatk/atkobject.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 26e6c2f..ea0df36 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -18,6 +18,7 @@
*/
#include <string.h>
+#include <locale.h>
#include <glib-object.h>