From 9e3f55ab21ad2d87c69fb9353ae310e2396afc6b Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Sat, 4 Jan 2014 04:41:47 +0100 Subject: [PATCH] fix state ctor --- libhive/state.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libhive/state.cpp b/libhive/state.cpp index 6533b4f6..9bfb9421 100644 --- a/libhive/state.cpp +++ b/libhive/state.cpp @@ -1,6 +1,8 @@ #include "state.h" -State::State(const QUuid &stateTypeId, const QUuid &deviceId) +State::State(const QUuid &stateTypeId, const QUuid &deviceId): + m_stateTypeId(stateTypeId), + m_deviceId(deviceId) { }