Change data and shortHelpString to adhere to naming convention

Rename data to clientData in the inlined overloads. This change is
transparent for any users.

Rename shortHelpString to shortHelp (dito for longHelp). Although this
change is in general visible for any users, Phoenix already mangles the
the parameter names to strip the 'String' suffix.
This commit is contained in:
Stefan Brüns
2020-10-03 16:12:04 +02:00
parent 1171155fee
commit d47b857b09
2 changed files with 10 additions and 10 deletions

View File

@@ -462,9 +462,9 @@ public:
whenever another button in the group is checked. ::wxITEM_DROPDOWN
specifies that a drop-down menu button will appear next to the
tool button (only GTK+ and MSW). Call SetDropdownMenu() afterwards.
@param shortHelpString
@param shortHelp
This string is used for the tools tooltip.
@param longHelpString
@param longHelp
This string is shown in the statusbar (if any) of the parent frame
when the mouse pointer is inside the tool.
@param clientData
@@ -481,8 +481,8 @@ public:
const wxBitmap& bitmap,
const wxBitmap& bmpDisabled,
wxItemKind kind = wxITEM_NORMAL,
const wxString& shortHelpString = wxEmptyString,
const wxString& longHelpString = wxEmptyString,
const wxString& shortHelp = wxEmptyString,
const wxString& longHelp = wxEmptyString,
wxObject* clientData = NULL);
//@}