[gtk/wip/jimmac/adwaita-3-32] gdk: Stop using deprecated pango api
- From: Jakub Steiner <jimmac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/jimmac/adwaita-3-32] gdk: Stop using deprecated pango api
- Date: Mon, 4 Feb 2019 14:09:50 +0000 (UTC)
commit 148650c23a56204bce7552e0a4936490c899c9cb
Author: Matthias Clasen <mclasen redhat com>
Date: Thu Jan 31 14:05:28 2019 -0500
gdk: Stop using deprecated pango api
gdk/wayland/gdkkeys-wayland.c | 3 ++-
gdk/x11/gdkkeys-x11.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/gdk/wayland/gdkkeys-wayland.c b/gdk/wayland/gdkkeys-wayland.c
index 9c80d805af..931086bc4a 100644
--- a/gdk/wayland/gdkkeys-wayland.c
+++ b/gdk/wayland/gdkkeys-wayland.c
@@ -31,6 +31,7 @@
#include <limits.h>
#include <errno.h>
#include <sys/mman.h>
+#include <fribidi.h>
#include "gdk.h"
#include "gdkwayland.h"
@@ -499,7 +500,7 @@ update_direction (GdkWaylandKeymap *keymap)
{
PangoDirection dir;
- dir = pango_unichar_direction (xkb_keysym_to_utf32 (syms[sym]));
+ dir = gdk_unichar_direction (xkb_keysym_to_utf32 (syms[sym]));
switch (dir)
{
case PANGO_DIRECTION_RTL:
diff --git a/gdk/x11/gdkkeys-x11.c b/gdk/x11/gdkkeys-x11.c
index a51e8e462b..577e4a18c0 100644
--- a/gdk/x11/gdkkeys-x11.c
+++ b/gdk/x11/gdkkeys-x11.c
@@ -480,7 +480,7 @@ get_direction (XkbDescRec *xkb,
{
gint level = 0;
KeySym sym = XkbKeySymEntry (xkb, code, level, group);
- PangoDirection dir = pango_unichar_direction (gdk_keyval_to_unicode (sym));
+ PangoDirection dir = gdk_unichar_direction (gdk_keyval_to_unicode (sym));
switch (dir)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]