[gtk+] Revert "Use wide character API in the Windows IME module"
- From: Tor Lillqvist <tml src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] Revert "Use wide character API in the Windows IME module"
- Date: Sun, 27 Jun 2010 21:22:00 +0000 (UTC)
commit 4aa75fcf43fb6387e07aa99a665e7ee24120b130
Author: Tor Lillqvist <tml iki fi>
Date: Sun Jun 27 23:41:50 2010 +0300
Revert "Use wide character API in the Windows IME module"
Ha, pango_win32_font_logfontw hasn't been exported from libpangowin32
after all due to a typo. This will have to wait. And actually
libpangowin32 is supposed to be deprecated surely, so that
functionality should be moved to libpangocairo or something.
This reverts commit 804effba9938b3e5ffcad1e731fdf83daf3e0aac.
modules/input/gtkimcontextime.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/modules/input/gtkimcontextime.c b/modules/input/gtkimcontextime.c
index 2b608a4..84fd1e0 100644
--- a/modules/input/gtkimcontextime.c
+++ b/modules/input/gtkimcontextime.c
@@ -790,7 +790,7 @@ gtk_im_context_ime_set_preedit_font (GtkIMContext *context)
gunichar wc;
PangoContext *pango_context;
PangoFont *font;
- LOGFONTW *logfont;
+ LOGFONT *logfont;
g_return_if_fail (GTK_IS_IM_CONTEXT_IME (context));
@@ -878,9 +878,9 @@ gtk_im_context_ime_set_preedit_font (GtkIMContext *context)
if (!font)
goto ERROR_OUT;
- logfont = pango_win32_font_logfontw (font);
+ logfont = pango_win32_font_logfont (font);
if (logfont)
- ImmSetCompositionFontW (himc, logfont);
+ ImmSetCompositionFont (himc, logfont);
g_object_unref (font);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]