all repos — openbox @ d9a5620f805d99738adc4cacdce9077f74574466

openbox fork - make it a bit more like ryudo

use the better defines for the xft version
Dana Jansens danakj@orodu.net
commit

d9a5620f805d99738adc4cacdce9077f74574466

parent

2a18a4b222f828969a3a9de3f6b7f84da7b840a1

1 files changed, 1 insertions(+), 2 deletions(-)

jump to
M otk/font.ccotk/font.cc

@@ -50,11 +50,10 @@ if (!XftInit(0)) {

printf(_("Couldn't initialize Xft.\n\n")); ::exit(3); } - int build = XFT_VERSION; int version = XftGetVersion(); printf(_("Using Xft %d.%d.%d (Built against %d.%d.%d).\n"), version / 10000 % 100, version / 100 % 100, version % 100, - build / 10000 % 100, build / 100 % 100, build % 100); + XFT_MAJOR, XFT_MINOR, XFT_REVISION); _xft_init = true; }