summaryrefslogtreecommitdiffstats
path: root/src/corelib/statemachine/qstate.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@theqtcompany.com>2016-01-19 13:29:15 +0100
committerErik Verbruggen <erik.verbruggen@theqtcompany.com>2016-01-28 16:24:46 +0000
commit3a30a2fcb3f026ffba4d9484ad92479419d79547 (patch)
tree9e286d3535150eececb3e1cb922042e77bbfebc2 /src/corelib/statemachine/qstate.cpp
parent97b448b152f0148adb2426c2a4e1f83dd150db3c (diff)
Allow QFinalStatePrivate to be subclassed.
- put it in a separate private header - add a protected QFinalState constructor that takes a QFinalStatePrivate - when passing through, also export QStatePrivate, so the linker can find the symbol Change-Id: I8563da16739731d9d6142be438a8769fc29de148 Reviewed-by: Marc Mutz <marc.mutz@kdab.com>
Diffstat (limited to 'src/corelib/statemachine/qstate.cpp')
-rw-r--r--src/corelib/statemachine/qstate.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/corelib/statemachine/qstate.cpp b/src/corelib/statemachine/qstate.cpp
index 3b84230cb2..cad524c720 100644
--- a/src/corelib/statemachine/qstate.cpp
+++ b/src/corelib/statemachine/qstate.cpp
@@ -31,11 +31,10 @@
**
****************************************************************************/
-#include "qstate.h"
+#include "qstate_p.h"
#ifndef QT_NO_STATEMACHINE
-#include "qstate_p.h"
#include "qhistorystate.h"
#include "qhistorystate_p.h"
#include "qabstracttransition.h"