fix uninitialised variable

pull/135/head
Michael Zanetti 2014-06-22 00:02:31 +02:00
parent 0fb81ef3ee
commit dbd8f0a603
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@
#include "devicemanager.h"
StateEvaluator::StateEvaluator(const StateDescriptor &stateDescriptor):
m_stateDescriptor(stateDescriptor)
m_stateDescriptor(stateDescriptor),
m_operatorType(StateOperatorAnd)
{
}