X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2FUtil.cc;h=1b521aafb6f872259e2eff92e64a7486194e55a3;hb=7972a75e4615da9a62e6be8c44880f5a594a2519;hp=9dadb3e10ea510fcd73961536fdc7f8958d83a3b;hpb=351a06655bdd7d440780b5bc5b255081c888044b;p=chaz%2Fopenbox diff --git a/src/Util.cc b/src/Util.cc index 9dadb3e1..1b521aaf 100644 --- a/src/Util.cc +++ b/src/Util.cc @@ -141,12 +141,6 @@ bool Rect::intersects(const Rect &a) const { } -bool Rect::contains(int __x, int __y) const { - return __x >= _x1 && __x <= _x2 && - __y >= _y1 && __y <= _y2; -} - - string expandTilde(const string& s) { if (s[0] != '~') return s; @@ -188,8 +182,9 @@ string textPropertyToString(Display *display, XTextProperty& text_prop) { string ret; if (text_prop.value && text_prop.nitems > 0) { - ret = (char *) text_prop.value; - if (text_prop.encoding != XA_STRING) { + if (text_prop.encoding == XA_STRING) { + ret = (char *) text_prop.value; + } else { text_prop.nitems = strlen((char *) text_prop.value); char **list;