X11WindowSystem: fixed memory management mismatch
authorTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 10 May 2012 11:14:29 +0000 (13:14 +0200)
committerTimo Lotterbach <timo.lotterbach@bmw-carit.de>
Thu, 10 May 2012 11:14:29 +0000 (13:14 +0200)
commita91e350d05eb4f8ae14b9d60c3450e5b08774428
treee25dc9a0f857c3f3080e82f376f873cb39a4d455
parent1a3c2c6a5bb7c841b6bc3b8e4875c5a43dd6158c
X11WindowSystem: fixed memory management mismatch

a member of type XVisualInfo was created with new() operator,
but was released with XFree() call which internally uses free().
XFree() was replaced with matching delete() operator calls.
LayerManagerPlugins/Renderers/Graphic/src/WindowSystems/X11WindowSystem.cpp