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

Work-arounds for compiling with VC6.

This commit is contained in:
Julian Storer 2010-03-11 11:37:40 +00:00
parent d84e47353c
commit 4ed63991e2
15 changed files with 206 additions and 222 deletions

View file

@ -3193,7 +3193,7 @@ Component::BailOutChecker::BailOutChecker (Component* const component1, Componen
bool Component::BailOutChecker::shouldBailOut() const throw()
{
return safePointer1 == 0 || safePointer2 != component2;
return safePointer1 == 0 || safePointer2.getComponent() != component2;
}