Improve wxPGChoices::Set() documentation too

Refer to Add() and use @overload rather than duplicating the
description.
This commit is contained in:
Vadim Zeitlin
2018-09-29 16:57:10 +02:00
parent 378f62bd08
commit 8bb5cb1d6e

View File

@@ -2662,12 +2662,14 @@ public:
/**
Sets contents from lists of strings and values.
This is similar to calling Clear() and the corresponding overload of Add().
*/
void Set( const wxChar** labels, const long* values = NULL );
/**
Sets contents from lists of strings and values.
*/
@overload
*/
void Set( const wxArrayString& labels, const wxArrayInt& values = wxArrayInt() );
/**