diff options
author | Noel <noelgrandin@gmail.com> | 2020-10-28 09:15:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-10-28 12:03:48 +0100 |
commit | 7a09d67e1c76db7cb6a87a2ceaa6de7325342b75 (patch) | |
tree | b768459ca830b343a3c53d1cea8b80de328ee1fb /include/comphelper | |
parent | 49a39d1abccc61b6dace3e92059ae50a6a2c298d (diff) |
convert some more long -> tools::Long
Change-Id: Ide9811c1a7582454b3fcf655b70ea106ed56509a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104914
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/numberedcollection.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/comphelper/numberedcollection.hxx b/include/comphelper/numberedcollection.hxx index efb70288f3ba..9ba619a94eb3 100644 --- a/include/comphelper/numberedcollection.hxx +++ b/include/comphelper/numberedcollection.hxx @@ -28,6 +28,7 @@ #include <cppuhelper/basemutex.hxx> #include <cppuhelper/weakref.hxx> #include <cppuhelper/implbase.hxx> +#include <tools/long.hxx> #include <unordered_map> #include <vector> @@ -58,10 +59,10 @@ class COMPHELPER_DLLPUBLIC NumberedCollection final : private ::cppu::BaseMutex }; typedef std::unordered_map< - long, + tools::Long, TNumberedItem > TNumberedItemHash; - typedef ::std::vector< long > TDeadItemList; + typedef ::std::vector< tools::Long > TDeadItemList; // interface |