Fix warning -Wreorder on linux in SimpleTextDrawer

This commit is contained in:
ImperatorS79 2020-05-17 22:21:21 +02:00 committed by Jérôme Leclercq
parent 332f02aab0
commit db0b2ba27b
1 changed files with 1 additions and 1 deletions

View File

@ -24,11 +24,11 @@ namespace Nz
inline SimpleTextDrawer::SimpleTextDrawer(const SimpleTextDrawer& drawer) :
m_color(drawer.m_color),
m_outlineColor(drawer.m_outlineColor),
m_text(drawer.m_text),
m_style(drawer.m_style),
m_colorUpdated(false),
m_glyphUpdated(false),
m_outlineColor(drawer.m_outlineColor),
m_characterSpacingOffset(drawer.m_characterSpacingOffset),
m_lineSpacingOffset(drawer.m_lineSpacingOffset),
m_maxLineWidth(drawer.m_maxLineWidth),