Browse Source

Tidied up a comment

tags/2021-05-28
jules 9 years ago
parent
commit
a700774d6f
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      modules/juce_gui_basics/menus/juce_PopupMenu.h

+ 5
- 5
modules/juce_gui_basics/menus/juce_PopupMenu.h View File

@@ -630,8 +630,8 @@ public:
}; };
//============================================================================== //==============================================================================
/** A user-defined component that can be used as an item in a popup menu.
@see PopupMenu::addCustomItem
/** A user-defined callback that can be used for specific items in a popup menu.
@see PopupMenu::Item::customCallback
*/ */
class JUCE_API CustomCallback : public SingleThreadedReferenceCountedObject class JUCE_API CustomCallback : public SingleThreadedReferenceCountedObject
{ {
@@ -639,9 +639,9 @@ public:
CustomCallback(); CustomCallback();
~CustomCallback(); ~CustomCallback();
/** Callback to indicate this object has been triggered.
@returns true if the itemID should be sent to the existModalState method, false
if it should send 0, indicating no further action should be taken
/** Callback to indicate this item has been triggered.
@returns true if the itemID should be sent to the exitModalState method, or
false if it should send 0, indicating no further action should be taken
*/ */
virtual bool menuItemTriggered() = 0; virtual bool menuItemTriggered() = 0;


Loading…
Cancel
Save