Fixed wxPGProperty ctor documentation

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Jaakko Salli
2009-08-09 09:14:29 +00:00
parent 338c3ec73a
commit a6ca568ce0
2 changed files with 12 additions and 27 deletions

View File

@@ -428,11 +428,15 @@
class MyProperty : public wxPGProperty
{
public:
// All arguments of ctor must have a default value -
// Default constructor
MyProperty() { }
// All arguments of this ctor must have a default value -
// use wxPG_LABEL for label and name
MyProperty( const wxString& label = wxPG_LABEL,
const wxString& name = wxPG_LABEL,
const wxString& value = wxEmptyString )
: wxPGProperty(label, name)
{
// m_value is wxVariant
m_value = value;
@@ -509,7 +513,7 @@ public:
@code
MyProperty( const wxString& label, const wxString& name, const T& value )
: wxPGProperty()
: wxPGProperty(label, name)
{
// Generally recommended way to set the initial value
// (as it should work in pretty much 100% of cases).