diff options
Diffstat (limited to 'reportdesign/source/ui')
-rw-r--r-- | reportdesign/source/ui/inspection/GeometryHandler.cxx | 16 |
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 { |