From e6bf359990f8356dc03ad65bfd56bb3fcf8f6186 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Mon, 17 Jun 2019 09:09:06 +0100 Subject: [PATCH] example - use LC_ALL not LC_MESSAGES for windows examples to build so they don't need evil anymore. should help vtorri + windows port/support. --- src/examples/edje/edje-textblock-hyphenation.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/edje/edje-textblock-hyphenation.c b/src/examples/edje/edje-textblock-hyphenation.c index b16ee81761..8b8b1866b8 100644 --- a/src/examples/edje/edje-textblock-hyphenation.c +++ b/src/examples/edje/edje-textblock-hyphenation.c @@ -82,7 +82,7 @@ main(int argc EINA_UNUSED, char *argv[] EINA_UNUSED) evas_object_show(bg); ecore_evas_data_set(ee, "background", bg); - setlocale(LC_MESSAGES, "en_US.UTF-8"); + setlocale(LC_ALL, "en_US.UTF-8"); edje_obj = edje_object_add(evas);