Initialize properly class member

Spotted by coverity.
This commit is contained in:
Jean-Marc Lasgouttes 2018-01-12 16:54:32 +01:00
parent aab58fed6b
commit 2ba00ecb7b

View File

@ -1035,7 +1035,7 @@ void GuiWorkArea::generateSyntheticMouseEvent()
// CompressorProxy adapted from Kuba Ober https://stackoverflow.com/a/21006207
CompressorProxy::CompressorProxy(GuiWorkArea * wa) : QObject(wa)
CompressorProxy::CompressorProxy(GuiWorkArea * wa) : QObject(wa), flag_(false)
{
qRegisterMetaType<KeySymbol>("KeySymbol");
qRegisterMetaType<KeyModifier>("KeyModifier");