summaryrefslogtreecommitdiff
path: root/reportdesign
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-02 12:52:27 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-02 15:51:44 +0100
commiteac97e7925a7e7dc47c9860fecf47fa4ff498b41 (patch)
tree8de461b911ea738b3234f5be82e7e449d1fe9edf /reportdesign
parent4ab06a576313de973ae96787a19215b208737859 (diff)
coverity#707970 Uninitialized scalar field
Change-Id: I70cc8c7667d9cfb2fc043e3889c7fb5adc9abd52
Diffstat (limited to 'reportdesign')
-rw-r--r--reportdesign/source/ui/inspection/GeometryHandler.cxx16
1 files changed, 9 insertions, 7 deletions
diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx
index 325b3a74e1d2..6d5838b341ee 100644
--- a/reportdesign/source/ui/inspection/GeometryHandler.cxx
+++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx
@@ -225,13 +225,15 @@ OUString GeometryHandler::impl_convertToFormula( const uno::Any& _rControlValue
aParser = ReportFormula( impl_isDataField(sName) ? ReportFormula::Field : ReportFormula::Expression, sName );
return aParser.getCompleteFormula();
}
-GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context) :
- GeometryHandler_Base(m_aMutex)
- ,m_aPropertyListeners( m_aMutex )
- ,m_xContext(context)
- ,m_pInfoService(new OPropertyInfoService())
- ,m_nDataFieldType(0)
- ,m_bIn(false)
+
+GeometryHandler::GeometryHandler(uno::Reference< uno::XComponentContext > const & context)
+ : GeometryHandler_Base(m_aMutex)
+ , m_aPropertyListeners(m_aMutex)
+ , m_xContext(context)
+ , m_pInfoService(new OPropertyInfoService())
+ , m_nDataFieldType(0)
+ , m_bNewFunction(false)
+ , m_bIn(false)
{
try
{