summaryrefslogtreecommitdiff
path: root/include/editeng/txtrange.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/editeng/txtrange.hxx')
-rw-r--r--include/editeng/txtrange.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/editeng/txtrange.hxx b/include/editeng/txtrange.hxx
index 1898a364966b..e6509291d388 100644
--- a/include/editeng/txtrange.hxx
+++ b/include/editeng/txtrange.hxx
@@ -37,7 +37,7 @@ class EDITENG_DLLPUBLIC TextRanger
struct RangeCacheItem
{
Range range; //!< Range for which we calculated results.
- std::deque<long> results; //!< Calculated results for the range.
+ std::deque<tools::Long> results; //!< Calculated results for the range.
RangeCacheItem(const Range& rng) : range(rng) {};
};
std::deque<RangeCacheItem> mRangeCache; //!< Cached range calculations.
@@ -63,7 +63,7 @@ public:
sal_uInt16 nCacheSize, sal_uInt16 nLeft, sal_uInt16 nRight,
bool bSimple, bool bInner, bool bVert = false );
~TextRanger();
- std::deque<long>* GetTextRanges( const Range& rRange );
+ std::deque<tools::Long>* GetTextRanges( const Range& rRange );
sal_uInt16 GetRight() const { return nRight; }
sal_uInt16 GetLeft() const { return nLeft; }
sal_uInt16 GetUpper() const { return nUpper; }