]> git.saurik.com Git - wxWidgets.git/commit
Optionally set the window name in wxPersistentRegisterAndRestore().
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Jul 2010 10:44:23 +0000 (10:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 11 Jul 2010 10:44:23 +0000 (10:44 +0000)
commit679ab0b315622f0b4d1fbd74d11c9d4f63a3b031
tree0e954410244755818639507cb817e9fdaa60ac33
parentac63bc407e598145299f8d9e7fdf7d37314a6658
Optionally set the window name in wxPersistentRegisterAndRestore().

In practice names are not often used so typically whenever you want to make a
window settings persistent you also need to set its name and the it's
convenient to let a single function do both tasks, so add an overload taking
the name string (this is a separate function instead of optional parameter to
avoid compilation errors if this is ever used with non-wxWindow-derived
objects which don't have SetName() method).

Also expand the documentation slightly and add @since tags.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
include/wx/persist.h
interface/wx/persist.h
samples/widgets/widgets.cpp