Revert "Convert uses of XKeycodeToKeysym (deprecated) to XkbKeycodeToKeysym"

This reverts commit 15a2032626.

This is wrong - it is missing the proper include file, and the
new function takes 4 arguments not 3.
This commit is contained in:
Jon Trulson
2021-07-04 13:00:51 -06:00
parent 3bc4132f9a
commit ac8bd41373
6 changed files with 9 additions and 9 deletions

View File

@@ -1326,7 +1326,7 @@ QueryServerSettings( void )
return(-1);
}
}
tmpMod = XkbKeycodeToKeysym(smGD.display, modMap->modifiermap[i], 0, 0);
tmpMod = XKeycodeToKeysym(smGD.display, modMap->modifiermap[i], 0);
sprintf(tmpChar,"%ld", tmpMod);
strcat(resSpec, tmpChar);
if(i != numLoops)