From 851d50cdea38c6dc94047975bdc77a21eecd74d0 Mon Sep 17 00:00:00 2001 From: Roland Winklmeier Date: Thu, 30 Oct 2014 15:54:12 +0100 Subject: [PATCH] refs #341 Fixed initialization of m_wildcard --- src/blackmisc/propertyindexvariantmap.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/blackmisc/propertyindexvariantmap.cpp b/src/blackmisc/propertyindexvariantmap.cpp index f9c9875be..7bd5b17bc 100644 --- a/src/blackmisc/propertyindexvariantmap.cpp +++ b/src/blackmisc/propertyindexvariantmap.cpp @@ -22,6 +22,7 @@ namespace BlackMisc * Constructor single value */ CPropertyIndexVariantMap::CPropertyIndexVariantMap(const CPropertyIndex &index, const QVariant &value) + : m_wildcard(false) { this->addValue(index, value); }