diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/numberedcollection.hxx | 5 | ||||
-rw-r--r-- | include/svl/svdde.hxx | 2 | ||||
-rw-r--r-- | include/vcl/toolkit/controllayout.hxx | 2 |
3 files changed, 5 insertions, 4 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 diff --git a/include/svl/svdde.hxx b/include/svl/svdde.hxx index eecd48d72e91..beea2ef5e53d 100644 --- a/include/svl/svdde.hxx +++ b/include/svl/svdde.hxx @@ -286,7 +286,7 @@ protected: const DdeTopic* GetSysTopic() const { return pSysTopic; } private: std::vector<DdeTopic*> aTopics; - std::vector< long > aFormats; + std::vector< tools::Long > aFormats; DdeTopic* pSysTopic; DdeString* pName; std::vector<std::unique_ptr<Conversation>> diff --git a/include/vcl/toolkit/controllayout.hxx b/include/vcl/toolkit/controllayout.hxx index 53ffeab4b32c..00a39f25c5a0 100644 --- a/include/vcl/toolkit/controllayout.hxx +++ b/include/vcl/toolkit/controllayout.hxx @@ -43,7 +43,7 @@ struct VCL_DLLPUBLIC ControlLayoutData // where one character may consist of many glyphs std::vector< tools::Rectangle > m_aUnicodeBoundRects; // start indices of lines - std::vector< long > m_aLineIndices; + std::vector< tools::Long > m_aLineIndices; // notify parent control on destruction VclPtr<const Control> m_pParent; |