summaryrefslogtreecommitdiff
path: root/unotools/source/config/optionsdlg.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:12:36 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:12:36 +0100
commitb7f0446d78923c46ab604ccaf48970a6b405ba5e (patch)
tree1ec06811d63d2ef0d10c54cd63cdf94dd90a6df0 /unotools/source/config/optionsdlg.cxx
parentd9384ef6e42419ecb77590c785eadf69e3d43428 (diff)
More loplugin:cstylecast: unotools
auto-rewrite with <https://gerrit.libreoffice.org/#/c/47798/> "Enable loplugin:cstylecast for some more cases" plus solenv/clang-format/reformat-formatted-files Change-Id: I40a3ff5a436766f8d16f154eff2726b4873a0eb1
Diffstat (limited to 'unotools/source/config/optionsdlg.cxx')
-rw-r--r--unotools/source/config/optionsdlg.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/unotools/source/config/optionsdlg.cxx b/unotools/source/config/optionsdlg.cxx
index b0a053e1fc93..b07c728d0fbf 100644
--- a/unotools/source/config/optionsdlg.cxx
+++ b/unotools/source/config/optionsdlg.cxx
@@ -152,7 +152,7 @@ void SvtOptionsDlgOptions_Impl::ReadNode( const OUString& _rNode, NodeType _eTyp
Sequence< OUString > aNodes = GetNodeNames( sNodes );
if ( aNodes.getLength() > 0 )
{
- for ( sal_uInt32 n = 0; n < (sal_uInt32)aNodes.getLength(); ++n )
+ for ( sal_uInt32 n = 0; n < static_cast<sal_uInt32>(aNodes.getLength()); ++n )
{
OUString sSubNodeName( sNodes + m_sPathDelimiter + aNodes[n] );
ReadNode( sSubNodeName, _eType == NT_Group ? NT_Page : NT_Option );