all repos — openbox @ d2a893c0b12cf949b81e860ad11896b6a67d5190

openbox fork - make it a bit more like ryudo

make the version printf just a debug message
Dana Jansens danakj@orodu.net
commit

d2a893c0b12cf949b81e860ad11896b6a67d5190

parent

2df4d8c7aaaa904cac084e0a41bd2219dc269e42

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

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

@@ -39,10 +39,12 @@ if (!XftInit(0)) {

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