1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Added default constructor to MenuBarComponent

This commit is contained in:
Joshua Gerrard 2015-07-15 09:49:16 +00:00 committed by Timur Doumler
parent f843266cc1
commit af643bb49d

View file

@ -41,10 +41,10 @@ public:
/** Creates a menu bar.
@param model the model object to use to control this bar. You can
pass nullptr into this if you like, and set the model
later using the setModel() method
pass omit the parameter or pass nullptr into this if you like,
and set the model later using the setModel() method.
*/
MenuBarComponent (MenuBarModel* model);
MenuBarComponent (MenuBarModel* model = nullptr);
/** Destructor. */
~MenuBarComponent();