Added SetProperty with wxChar* argument

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74982 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2013-10-11 08:04:23 +00:00
parent dc1f61892b
commit 89c9db1e4d
2 changed files with 10 additions and 0 deletions

View File

@@ -1699,6 +1699,11 @@ public:
*/
void SetProperty(const wxString& name, const wxString& value);
/**
Sets a property by name and wxChar* value.
*/
void SetProperty(const wxString& name, const wxChar* value) { SetProperty(name, wxString(value)); }
/**
Sets property by name and long integer value.
*/

View File

@@ -1574,6 +1574,11 @@ public:
*/
void SetProperty(const wxString& name, const wxString& value);
/**
Sets a property by name and wxChar* value.
*/
void SetProperty(const wxString& name, const wxChar* value);
/**
Sets property by name and long integer value.
*/