diff options
author | Noel <noelgrandin@gmail.com> | 2020-10-21 09:30:59 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-10-21 14:33:39 +0200 |
commit | 5e43e888f6b9bc32fc5d3361be5a7962796726ea (patch) | |
tree | 061df26f907bece9cacad5b53290db3f6937d09e /comphelper | |
parent | 5100a06c15ee8d66dc88f58523a35014988fd9fe (diff) |
use tools::Long in comphelper..cui
Change-Id: I65167999c6049038f8f5d530a0c5cb0552ab0e06
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104609
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/graphicmimetype.cxx | 4 | ||||
-rw-r--r-- | comphelper/source/misc/numberedcollection.cxx | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/comphelper/source/misc/graphicmimetype.cxx b/comphelper/source/misc/graphicmimetype.cxx index 290050df13f8..0aea5afdde98 100644 --- a/comphelper/source/misc/graphicmimetype.cxx +++ b/comphelper/source/misc/graphicmimetype.cxx @@ -52,8 +52,8 @@ OUString GraphicMimeTypeHelper::GetMimeTypeForExtension(const OString& rExt) OUString aMimeType; - long const nCount = SAL_N_ELEMENTS(aMapper); - for (long i = 0; (i < nCount) && aMimeType.isEmpty(); ++i) + tools::Long const nCount = SAL_N_ELEMENTS(aMapper); + for (tools::Long i = 0; (i < nCount) && aMimeType.isEmpty(); ++i) { if (rExt == aMapper[i].pExt) aMimeType = OUString(aMapper[i].pMimeType, strlen(aMapper[i].pMimeType), diff --git a/comphelper/source/misc/numberedcollection.cxx b/comphelper/source/misc/numberedcollection.cxx index c4ed3319d5c2..e0615656c231 100644 --- a/comphelper/source/misc/numberedcollection.cxx +++ b/comphelper/source/misc/numberedcollection.cxx @@ -21,6 +21,7 @@ #include <comphelper/numberedcollection.hxx> #include <com/sun/star/frame/UntitledNumbersConst.hpp> #include <com/sun/star/lang/IllegalArgumentException.hpp> +#include <tools/long.hxx> namespace comphelper{ @@ -229,7 +230,7 @@ OUString SAL_CALL NumberedCollection::getUntitledPrefix() void NumberedCollection::impl_cleanUpDeadItems ( TNumberedItemHash& lItems , const TDeadItemList& lDeadItems) { - for (const long& rDeadItem : lDeadItems) + for (const tools::Long& rDeadItem : lDeadItems) { lItems.erase(rDeadItem); } |