Skip to content

Commit

Permalink
Initialization order fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DrItanium authored and KjellMorgenstern committed Oct 11, 2019
1 parent 52d7d8b commit 4f26f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connectors/ercdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ bool ValidReal::setValue(const QString & v) {

ErcData::ErcData(const QDomElement & ercElement) :
m_eType(UnknownEType),
m_currentFlow(UnknownFlow),
m_ignore(Never)
m_ignore(Never),
m_currentFlow(UnknownFlow)
{
QString eType = ercElement.attribute("etype");
if (eType.compare("VCC", Qt::CaseInsensitive) == 0) {
Expand Down

0 comments on commit 4f26f42

Please sign in to comment.