1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fix for menu bar problem on OSX.

This commit is contained in:
jules 2012-09-21 11:37:22 +01:00
parent 08dd8f62c7
commit 7141fe39dc
5 changed files with 33 additions and 45 deletions

View file

@ -26,10 +26,7 @@
class AsyncUpdater::AsyncUpdaterMessage : public CallbackMessage
{
public:
AsyncUpdaterMessage (AsyncUpdater& owner_)
: owner (owner_)
{
}
AsyncUpdaterMessage (AsyncUpdater& au) : owner (au) {}
void messageCallback()
{

View file

@ -45,7 +45,6 @@ public:
AsyncUpdater();
/** Destructor.
If there are any pending callbacks when the object is deleted, these are lost.
*/
virtual ~AsyncUpdater();