summaryrefslogtreecommitdiffstats
path: root/src/plugins/generic
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-04-30 09:19:31 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-01 07:10:28 +0200
commit69218f58a97f5777c701c806e95ca31c5a277ddc (patch)
tree9b8f694ec38c31287301c59af2810e80368d48bb /src/plugins/generic
parent7329d61212bb9b354157ba9cd62e16288f2743c9 (diff)
Initialize members
Change-Id: I786de497af63a45d9c38780e856a3f27c5ce8468 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'src/plugins/generic')
-rw-r--r--src/plugins/generic/evdevtouch/qevdevtouch.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/generic/evdevtouch/qevdevtouch.cpp b/src/plugins/generic/evdevtouch/qevdevtouch.cpp
index 1c3e8952e9..327f64412a 100644
--- a/src/plugins/generic/evdevtouch/qevdevtouch.cpp
+++ b/src/plugins/generic/evdevtouch/qevdevtouch.cpp
@@ -114,7 +114,8 @@ QTouchScreenData::QTouchScreenData(QTouchScreenHandler *q_ptr, const QStringList
m_currentSlot(0),
hw_range_x_min(0), hw_range_x_max(0),
hw_range_y_min(0), hw_range_y_max(0),
- hw_pressure_min(0), hw_pressure_max(0)
+ hw_pressure_min(0), hw_pressure_max(0),
+ m_device(0), m_typeB(false)
{
m_forceToActiveWindow = args.contains(QLatin1String("force_window"));
}