Resolve ambiguity between two wxAuiNotebook overloads.
wxAuiNotebook-specific InsertPage() and the version inherited from wxBookCtrlBase were ambiguous if used with default values for their 2 last arguments. Resolve this by removing defaults from the inherited version. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -602,7 +602,7 @@ public:
|
|||||||
int imageId);
|
int imageId);
|
||||||
virtual bool DeleteAllPages();
|
virtual bool DeleteAllPages();
|
||||||
virtual bool InsertPage(size_t index, wxWindow *page, const wxString &text,
|
virtual bool InsertPage(size_t index, wxWindow *page, const wxString &text,
|
||||||
bool select=false, int imageId=NO_IMAGE);
|
bool select, int imageId);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Common part of all ctors.
|
// Common part of all ctors.
|
||||||
|
Reference in New Issue
Block a user