Fixed wxPropertyGridInterface::SetPropertyValues() documentation
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61472 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1030,9 +1030,8 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef SWIG
|
#ifndef SWIG
|
||||||
/** Sets various property values from a list of wxVariants. If property with
|
/**
|
||||||
name is missing from the grid, new property is created under given
|
Sets property values from a list of wxVariants.
|
||||||
default category (or root if omitted).
|
|
||||||
*/
|
*/
|
||||||
void SetPropertyValues( const wxVariantList& list,
|
void SetPropertyValues( const wxVariantList& list,
|
||||||
wxPGPropArg defaultCategory = wxNullProperty )
|
wxPGPropArg defaultCategory = wxNullProperty )
|
||||||
@@ -1043,6 +1042,9 @@ public:
|
|||||||
m_pState->DoSetPropertyValues(list, p);
|
m_pState->DoSetPropertyValues(list, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Sets property values from a list of wxVariants.
|
||||||
|
*/
|
||||||
void SetPropertyValues( const wxVariant& list,
|
void SetPropertyValues( const wxVariant& list,
|
||||||
wxPGPropArg defaultCategory = wxNullProperty )
|
wxPGPropArg defaultCategory = wxNullProperty )
|
||||||
{
|
{
|
||||||
|
@@ -792,13 +792,14 @@ public:
|
|||||||
void SetPropertyValueUnspecified( wxPGPropArg id );
|
void SetPropertyValueUnspecified( wxPGPropArg id );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Sets various property values from a list of wxVariants. If property with
|
Sets property values from a list of wxVariants.
|
||||||
name is missing from the grid, new property is created under given
|
|
||||||
default category (or root if omitted).
|
|
||||||
*/
|
*/
|
||||||
void SetPropertyValues( const wxVariantList& list,
|
void SetPropertyValues( const wxVariantList& list,
|
||||||
wxPGPropArg defaultCategory = wxNullProperty );
|
wxPGPropArg defaultCategory = wxNullProperty );
|
||||||
|
|
||||||
|
/**
|
||||||
|
Sets property values from a list of wxVariants.
|
||||||
|
*/
|
||||||
void SetPropertyValues( const wxVariant& list,
|
void SetPropertyValues( const wxVariant& list,
|
||||||
wxPGPropArg defaultCategory = wxNullProperty );
|
wxPGPropArg defaultCategory = wxNullProperty );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user