summaryrefslogtreecommitdiff
path: root/framework/source/helper/ocomponentenumeration.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-01-12 20:23:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2018-01-12 20:23:23 +0100
commitcf8b8cad053e0e9783cdc8f08ce886e2ae4b7eb0 (patch)
treeacb5e32f7abdb40975076487122c7fa1d05be0b7 /framework/source/helper/ocomponentenumeration.cxx
parentfaf01b8d54737dfbb318709180966e84c7fd5614 (diff)
More loplugin:cstylecast: framework
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: I8981ef6de675bf10c103e1af0afccd620762268d
Diffstat (limited to 'framework/source/helper/ocomponentenumeration.cxx')
-rw-r--r--framework/source/helper/ocomponentenumeration.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/helper/ocomponentenumeration.cxx b/framework/source/helper/ocomponentenumeration.cxx
index 5c964d62f727..de57e8669114 100644
--- a/framework/source/helper/ocomponentenumeration.cxx
+++ b/framework/source/helper/ocomponentenumeration.cxx
@@ -66,7 +66,7 @@ sal_Bool SAL_CALL OComponentEnumeration::hasMoreElements()
// => The last one is getLength() - 1!
// m_nPosition's current value is the position for the next element, which will be return, if user call "nextElement()"
// => We have more elements if current position less then the length of the list!
- return ( m_nPosition < (sal_uInt32)(m_seqComponents.size()) );
+ return ( m_nPosition < static_cast<sal_uInt32>(m_seqComponents.size()) );
}
// XEnumeration