From c77e30cbc0e7fb56593dac345291fd33998fbaf0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 14 Aug 2019 20:11:07 +0200 Subject: replace ".get->" with "->" Change-Id: I327a6fda1fe0170da33e06b735f09a39421c8a58 Reviewed-on: https://gerrit.libreoffice.org/77469 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx') diff --git a/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx b/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx index 8326c78f4f5a..c5c17c289e7f 100644 --- a/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx +++ b/svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx @@ -602,14 +602,14 @@ public: else if ( mpSecondArg->isConstant() && (*mpSecondArg)() == 1 ) aRet = mpFirstArg->fillNode( rEquations, nullptr, nFlags ); else if ( ( mpFirstArg->getType() == ExpressionFunct::BinaryDiv ) // don't care of (pi/180) - && ( static_cast(mpFirstArg.get())->mpFirstArg.get()->getType() == ExpressionFunct::EnumPi ) - && ( static_cast(mpFirstArg.get())->mpSecondArg.get()->getType() == ExpressionFunct::Const ) ) + && ( static_cast(mpFirstArg.get())->mpFirstArg->getType() == ExpressionFunct::EnumPi ) + && ( static_cast(mpFirstArg.get())->mpSecondArg->getType() == ExpressionFunct::Const ) ) { aRet = mpSecondArg->fillNode( rEquations, nullptr, nFlags ); } else if ( ( mpSecondArg->getType() == ExpressionFunct::BinaryDiv ) // don't care of (pi/180) - && ( static_cast(mpSecondArg.get())->mpFirstArg.get()->getType() == ExpressionFunct::EnumPi ) - && ( static_cast(mpSecondArg.get())->mpSecondArg.get()->getType() == ExpressionFunct::Const ) ) + && ( static_cast(mpSecondArg.get())->mpFirstArg->getType() == ExpressionFunct::EnumPi ) + && ( static_cast(mpSecondArg.get())->mpSecondArg->getType() == ExpressionFunct::Const ) ) { aRet = mpFirstArg->fillNode( rEquations, nullptr, nFlags ); } -- cgit