]> Dogcows Code - chaz/openbox/blobdiff - src/Util.cc
allow style options in the rc file to override those found in the style
[chaz/openbox] / src / Util.cc
index bc685bfaf4dac4e2c55cd7c133ed83933c62cd36..1b521aafb6f872259e2eff92e64a7486194e55a3 100644 (file)
@@ -182,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;
This page took 0.023435 seconds and 4 git commands to generate.