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

Fix for DLL build.

This commit is contained in:
jules 2012-12-13 19:06:47 +00:00
parent 3a9cad8f2c
commit a56e69a281
2 changed files with 2 additions and 2 deletions

View file

@ -88,7 +88,7 @@ public:
private:
//==============================================================================
class Pimpl;
JUCE_PUBLIC_IN_DLL_BUILD (class Pimpl)
ScopedPointer<Pimpl> pimpl;
String currentPipeName;
ReadWriteLock lock;

View file

@ -70,7 +70,7 @@ public:
private:
//==============================================================================
JUCE_PUBLIC_IN_DLL_BUILD (class Pimpl);
JUCE_PUBLIC_IN_DLL_BUILD (class Pimpl)
ScopedPointer<Pimpl> pimpl;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SystemTrayIconComponent)