Browse Source

Make dispatchNextMessageOnSystemQueue() public, needed by Carla

pull/8/head
falkTX 7 years ago
parent
commit
21e46bfc34
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_events/messages/juce_MessageManager.h

+ 1
- 1
modules/juce_events/messages/juce_MessageManager.h View File

@@ -189,6 +189,7 @@ public:
// Internal methods - do not use!
void deliverBroadcastMessage (const String&);
~MessageManager() noexcept;
static bool dispatchNextMessageOnSystemQueue (bool returnIfNoPendingMessages);
#endif
private:
@@ -212,7 +213,6 @@ private:
static void* exitModalLoopCallback (void*);
static void doPlatformSpecificInitialisation();
static void doPlatformSpecificShutdown();
static bool dispatchNextMessageOnSystemQueue (bool returnIfNoPendingMessages);
template <typename FunctionType>
struct AsyncCallInvoker : public MessageBase


Loading…
Cancel
Save