From 4b1eee84946359b888163e2a87cc33ba58db95c7 Mon Sep 17 00:00:00 2001 From: DRC Date: Thu, 20 May 2010 17:54:18 +0000 Subject: [PATCH] XConvertCase() in xorg-xserver 1.5 is simply a macro that maps to XkbConvertCase(), so not only if this #ifdef unnecessary, but it breaks the Xorg 7.4 build. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4063 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- unix/xserver/hw/vnc/Input.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/unix/xserver/hw/vnc/Input.cc b/unix/xserver/hw/vnc/Input.cc index f1e48018..da885195 100644 --- a/unix/xserver/hw/vnc/Input.cc +++ b/unix/xserver/hw/vnc/Input.cc @@ -712,11 +712,7 @@ static KeySym KeyCodetoKeySym(KeySymsPtr keymap, int keycode, int col) } if ((per <= (col|1)) || (syms[col|1] == NoSymbol)) { -#if XORG >= 18 XkbConvertCase -#else - XConvertCase -#endif (syms[col&~1], &lsym, &usym); if (!(col & 1)) return lsym; -- 2.39.5