Changed paths:
M include/wx/gtk/private/tlwgeom.h
M include/wx/msw/private/tlwgeom.h
M include/wx/persist/toplevel.h
M include/wx/private/tlwgeom.h
M include/wx/toplevel.h
M interface/wx/toplevel.h
M src/common/toplvcmn.cpp
Log Message:
-----------
Replace wxTopLevelWindow::GeometrySerializer with GeometryStore
The old class used incorrect const qualifiers on its member functions:
saving function typically modifies the object being saved into, and so
must not be const, while loading function should be const, but the old
class reversed this.
Do it right this time in the new GeometryStore class and keep the old
class for compatibility only.