Remove non-existent wxPGChoices methods from the documentation.

wxPGProperty::Add(wxArrayString, ValArrItem), GetItemAtY() and HasValue() were
documented but don't actually exist, remove them.

Also correct wxPGProperty::Empty() scope: it's protected and not public.

Closes #13988.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70607 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-02-15 15:40:10 +00:00
parent 6dea83846b
commit 9e610e1caf

View File

@@ -1198,9 +1198,6 @@ public:
*/ */
void DeleteChoice( int index ); void DeleteChoice( int index );
/** Deletes all child properties. */
void Empty();
/** /**
Enables or disables the property. Disabled property usually appears Enables or disables the property. Disabled property usually appears
as having grey text. as having grey text.
@@ -1758,6 +1755,10 @@ public:
Returns @true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES. Returns @true if containing grid uses wxPG_EX_AUTO_UNSPECIFIED_VALUES.
*/ */
bool UsesAutoUnspecified() const; bool UsesAutoUnspecified() const;
protected:
/** Deletes all child properties. */
void Empty();
}; };
@@ -1879,9 +1880,6 @@ public:
*/ */
void Add( const wxChar** labels, const ValArrItem* values = NULL ); void Add( const wxChar** labels, const ValArrItem* values = NULL );
/** Version that works with wxArrayString. */
void Add( const wxArrayString& arr, const ValArrItem* values = NULL );
/** Version that works with wxArrayString and wxArrayInt. */ /** Version that works with wxArrayString and wxArrayInt. */
void Add( const wxArrayString& arr, const wxArrayInt& arrint ); void Add( const wxArrayString& arr, const wxArrayInt& arrint );
@@ -1947,15 +1945,6 @@ public:
wxArrayInt GetIndicesForStrings( const wxArrayString& strings, wxArrayInt GetIndicesForStrings( const wxArrayString& strings,
wxArrayString* unmatched = NULL ) const; wxArrayString* unmatched = NULL ) const;
/** Returns property at given virtual y coordinate.
*/
wxPGProperty* GetItemAtY( unsigned int y ) const;
/**
Returns @true if item at given index has a valid value;
*/
bool HasValue( unsigned int i ) const;
/** /**
Returns index of item with given label. Returns index of item with given label.
*/ */