fix compiling on gcc 4.6 (too early to use 4.7.1...)

This commit is contained in:
niczkx
2012-07-30 18:47:21 -06:00
parent 39db801f93
commit 4c369bc823
24 changed files with 53 additions and 52 deletions

View File

@@ -55,9 +55,9 @@ private:
int m_cellSpacing;
int m_numColumns;
int m_numLines;
bool m_autoSpacing = false;
bool m_fitChildren = false;
bool m_flow = false;
stdext::boolean<false> m_autoSpacing;
stdext::boolean<false> m_fitChildren;
stdext::boolean<false> m_flow;
};
#endif