fix linker error on Mac OSX

This commit is contained in:
Erwin Coumans
2014-05-20 14:07:57 -07:00
parent eb74688c18
commit 4912bebfbf

View File

@@ -101,11 +101,16 @@ Base::~Base()
} }
} }
extern int avoidUpdate;
void Base::Invalidate() void Base::Invalidate()
{ {
m_bNeedsLayout = true; m_bNeedsLayout = true;
m_bCacheTextureDirty = true; m_bCacheTextureDirty = true;
extern int avoidUpdate;
avoidUpdate = -3; avoidUpdate = -3;
} }