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:
@@ -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.
|
||||
*/
|
||||
|
@@ -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.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user