summaryrefslogtreecommitdiff
path: root/sc/source/ui/optdlg
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-06-02 09:36:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-06-02 09:36:49 +0200
commitc72d788410c13321c7079b2f185a26baea735b59 (patch)
tree56dfdf66d764f8420daa56ea6ca0d3387aa9179a /sc/source/ui/optdlg
parentb38b619681465459e0330b9a3417fffcc4e15a17 (diff)
Improved loplugin:redundantcast static_cast handling: sc
Change-Id: I11f0deb6913a7a3adc6bc31890451e05bfa00802
Diffstat (limited to 'sc/source/ui/optdlg')
-rw-r--r--sc/source/ui/optdlg/tpformula.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/optdlg/tpformula.cxx b/sc/source/ui/optdlg/tpformula.cxx
index 376a22681259..ffa726a7c27a 100644
--- a/sc/source/ui/optdlg/tpformula.cxx
+++ b/sc/source/ui/optdlg/tpformula.cxx
@@ -253,9 +253,9 @@ bool ScTpFormulaOptions::FillItemSet(SfxItemSet* rCoreSet)
if ( mpLbFormulaSyntax->GetSavedValue() != aSyntaxPos
|| mpCbEnglishFuncName->GetSavedValue() != (bEnglishFuncName ? 1 : 0)
- || static_cast<OUString>(mpEdSepFuncArg->GetSavedValue()) != aSep
- || static_cast<OUString>(mpEdSepArrayCol->GetSavedValue()) != aSepArrayCol
- || static_cast<OUString>(mpEdSepArrayRow->GetSavedValue()) != aSepArrayRow
+ || mpEdSepFuncArg->GetSavedValue() != aSep
+ || mpEdSepArrayCol->GetSavedValue() != aSepArrayCol
+ || mpEdSepArrayRow->GetSavedValue() != aSepArrayRow
|| mpLbOOXMLRecalcOptions->GetSavedValue() != nOOXMLRecalcMode
|| mpLbODFRecalcOptions->GetSavedValue() != nODFRecalcMode
|| maSavedConfig != maCurrentConfig