Unverified Commit aaae5d57 authored by Mike Gabriel's avatar Mike Gabriel

Merge branch 'Etersoft-fix-nxagent-window-title-encoding' into 3.6.x

parents 489c1731 9a7c0b08
......@@ -441,8 +441,8 @@ Window nxagentCreateIconWindow(void)
}
}
XSetWMProperties(nxagentDisplay, w,
&windowName, &windowName,
Xutf8SetWMProperties(nxagentDisplay, w,
window_name, window_name,
NULL , 0 , sizeHints, wmHints, NULL);
if (sizeHints)
......@@ -1902,13 +1902,12 @@ N/A
if (nxagentUserGeometry.flag & WidthValue || nxagentUserGeometry.flag & HeightValue)
sizeHints->flags |= USSize;
}
/* FIXME: deprecated, replaced by XSetWmProperties() */
XSetStandardProperties(nxagentDisplay,
Xutf8SetWMProperties(nxagentDisplay,
nxagentDefaultWindows[pScreen->myNum],
nxagentWindowName,
nxagentWindowName,
nxagentIconPixmap,
argv, argc, sizeHints);
argv , argc , &sizeHints, &wmHints, NULL);
if (sizeHints)
XFree(sizeHints);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment