diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-06 18:31:44 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-06 18:31:44 +0200 |
commit | 93c0b1f5dafa1c9d01c804f350129dde047bb8dc (patch) | |
tree | 861bc6da163d72fedcf690c0029be980d4b76f06 /sc/source/ui/dbgui/scuiasciiopt.cxx | |
parent | ee3e23842e7bb0bfe23b6f070b0677dd3d70fd92 (diff) |
Improved loplugin:redundantcast, static_cast on arithmetic types: sc
Change-Id: Id56d3e3d7c4485e24dc8fe6349631837101e86fe
Diffstat (limited to 'sc/source/ui/dbgui/scuiasciiopt.cxx')
-rw-r--r-- | sc/source/ui/dbgui/scuiasciiopt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/scuiasciiopt.cxx b/sc/source/ui/dbgui/scuiasciiopt.cxx index 2b7f7a50cd9c..ebf8ac90867f 100644 --- a/sc/source/ui/dbgui/scuiasciiopt.cxx +++ b/sc/source/ui/dbgui/scuiasciiopt.cxx @@ -595,7 +595,7 @@ void ScImportAsciiDlg::SaveParameters() pCkbQuotedAsText->IsChecked(), pCkbDetectNumber->IsChecked(), pRbFixed->IsChecked(), static_cast<sal_Int32>(pNfRow->GetValue()), - static_cast<sal_Int32>(pLbCharSet->GetSelectEntryPos()), + pLbCharSet->GetSelectEntryPos(), static_cast<sal_Int32>(pLbCustomLang->GetSelectLanguage()), meCall ); } |