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:
parent
d84e47353c
commit
4ed63991e2
15 changed files with 206 additions and 222 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue