From fa2ecb423707783b3aa32b094170c3e576d4fb94 Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 30 Sep 2013 21:55:07 +0200 Subject: [PATCH] [DEV] Correction of compilation error on 32 bits --- external/etk | 2 +- sources/ewol/renderer/X11/Context.cpp | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/external/etk b/external/etk index 78d09864..44640896 160000 --- a/external/etk +++ b/external/etk @@ -1 +1 @@ -Subproject commit 78d0986454e70b2292984f15e66ffe4c5c146d31 +Subproject commit 44640896f5f58469ef9bce2703e9bd2b12344e9d diff --git a/sources/ewol/renderer/X11/Context.cpp b/sources/ewol/renderer/X11/Context.cpp index 38afce35..b4a0183b 100644 --- a/sources/ewol/renderer/X11/Context.cpp +++ b/sources/ewol/renderer/X11/Context.cpp @@ -1018,19 +1018,17 @@ class X11Interface : public ewol::eContext EWOL_ERROR("Could not open input method"); return false; } + /* XIMStyles *styles=NULL; - // XIMStyle xim_requested_style; - char* failed_arg = XGetIMValues(m_xim, XNQueryInputStyle, &styles, NULL); - if (failed_arg != NULL) { EWOL_ERROR("XIM Can't get styles"); return false; } - for (int32_t iii=0; iiicount_styles; ++iii) { EWOL_INFO("style " << styles->supported_styles[iii]); } + */ m_xic = XCreateIC(m_xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XNClientWindow, m_WindowHandle, NULL); if (m_xic == NULL) { EWOL_ERROR("Could not open IC");