xfreerdp: fix listing of RemoteApp windows in taskbar

This commit is contained in:
Marc-André Moreau 2011-08-30 15:06:50 -04:00
parent 219979c064
commit 9d7fce9194
2 changed files with 2 additions and 3 deletions

View File

@ -98,10 +98,10 @@ void xf_rail_CreateWindow(rdpRail* rail, rdpWindow* window)
window->windowWidth, window->windowHeight,
window->windowId);
XStoreName(xfi->display, xfw->handle, window->title);
xf_SetWindowStyle(xfi, xfw, window->style, window->extendedStyle);
XStoreName(xfi->display, xfw->handle, window->title);
window->extra = (void*) xfw;
window->extraId = (void*) xfw->handle;
}

View File

@ -299,7 +299,6 @@ xfWindow* xf_CreateWindow(xfInfo* xfi, xfWindow* parent, int x, int y, int width
CWBorderPixel, &xfi->attribs);
xf_SetWindowDecorations(xfi, window, window->decorations);
xf_SetWindowUnlisted(xfi, window);
class_hints = XAllocClassHint();