1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Enable subclassing of StandaloneFilterApp

This commit is contained in:
hogliux 2016-05-24 16:53:38 +01:00
parent f5391cd9f9
commit 0ea9e33544
2 changed files with 3 additions and 3 deletions

View file

@ -91,10 +91,8 @@ public:
quit();
}
private:
protected:
ScopedPointer<StandaloneFilterWindow> mainWindow;
};
START_JUCE_APPLICATION (StandaloneFilterApp);
#endif

View file

@ -27,3 +27,5 @@
#endif
#include "Standalone/juce_StandaloneFilterApp.cpp"
START_JUCE_APPLICATION (StandaloneFilterApp);