Fixed initialization order warnings

This commit is contained in:
Thorbjørn Lindeijer
2010-04-16 12:41:18 +02:00
parent 577057d2a9
commit b370804b01

View File

@@ -37,14 +37,16 @@
using namespace Find; using namespace Find;
BaseTextFind::BaseTextFind(QTextEdit *editor) BaseTextFind::BaseTextFind(QTextEdit *editor)
: m_editor(editor), m_incrementalStartPos(-1) : m_editor(editor)
, m_findScopeVerticalBlockSelection(0) , m_findScopeVerticalBlockSelection(0)
, m_incrementalStartPos(-1)
{ {
} }
BaseTextFind::BaseTextFind(QPlainTextEdit *editor) BaseTextFind::BaseTextFind(QPlainTextEdit *editor)
: m_plaineditor(editor), m_incrementalStartPos(-1) : m_plaineditor(editor)
, m_findScopeVerticalBlockSelection(0) , m_findScopeVerticalBlockSelection(0)
, m_incrementalStartPos(-1)
{ {
} }