Missed header changes

This commit is contained in:
Areloch 2020-07-11 15:58:39 -05:00
parent a5404ad216
commit a71f5cfd9d

View file

@ -107,7 +107,7 @@ public:
/// returns the menu item's ID, or -1 on failure. /// returns the menu item's ID, or -1 on failure.
/// implementd on a per-platform basis. /// implementd on a per-platform basis.
/// TODO: factor out common code /// TODO: factor out common code
S32 insertItem(S32 pos, const char *title, const char* accelerator, const char* cmd); S32 insertItem(S32 pos, const char *title, const char* accelerator, const char* cmd, S32 bitmapIndex = -1);
/// Sets the name title and accelerator for /// Sets the name title and accelerator for
/// an existing item. /// an existing item.
@ -143,6 +143,9 @@ public:
///Clears all items ///Clears all items
void clearItems(); void clearItems();
///Gets the text of a given item
String getItemText(S32 pos);
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/// Displays this menu as a popup menu and blocks until the user has selected /// Displays this menu as a popup menu and blocks until the user has selected
/// an item. /// an item.