Add default argument values to wxToolBar::CreateTool() in wxQt

Make the API consistent with the other ports.
This commit is contained in:
Scott Furry
2017-07-14 16:51:18 +02:00
committed by Vadim Zeitlin
parent fd7f4dfe3d
commit 2ea9548ffb

View File

@@ -48,11 +48,11 @@ public:
virtual wxToolBarToolBase *CreateTool(int toolid,
const wxString& label,
const wxBitmap& bmpNormal,
const wxBitmap& bmpDisabled,
wxItemKind kind,
wxObject *clientData,
const wxString& shortHelp,
const wxString& longHelp) wxOVERRIDE;
const wxBitmap& bmpDisabled = wxNullBitmap,
wxItemKind kind = wxITEM_NORMAL,
wxObject *clientData = NULL,
const wxString& shortHelp = wxEmptyString,
const wxString& longHelp = wxEmptyString) wxOVERRIDE;
virtual wxToolBarToolBase *CreateTool(wxControl *control,
const wxString& label) wxOVERRIDE;