diff options
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/editeng.hxx | 2 | ||||
-rw-r--r-- | include/editeng/outliner.hxx | 2 | ||||
-rw-r--r-- | include/editeng/txtrange.hxx | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/include/editeng/editeng.hxx b/include/editeng/editeng.hxx index e10b7a1b826c..882b0a4428ee 100644 --- a/include/editeng/editeng.hxx +++ b/include/editeng/editeng.hxx @@ -76,7 +76,7 @@ class MapMode; class Color; namespace vcl { class Font; } class KeyEvent; -class PolyPolygon; +namespace tools { class PolyPolygon; } class Size; class Point; class Rectangle; diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx index 5a020c147830..ac5f18b6ffab 100644 --- a/include/editeng/outliner.hxx +++ b/include/editeng/outliner.hxx @@ -56,7 +56,7 @@ class Pointer; class CommandEvent; class MapMode; class OutputDevice; -class PolyPolygon; +namespace tools { class PolyPolygon; } class SfxStyleSheetPool; class SfxStyleSheet; class SfxItemPool; diff --git a/include/editeng/txtrange.hxx b/include/editeng/txtrange.hxx index b18a79302f2d..8fe6b4f2bb5d 100644 --- a/include/editeng/txtrange.hxx +++ b/include/editeng/txtrange.hxx @@ -24,7 +24,7 @@ #include <tools/gen.hxx> #include <deque> -class PolyPolygon; +namespace tools { class PolyPolygon; } class Rectangle; namespace basegfx { @@ -43,8 +43,8 @@ class EDITENG_DLLPUBLIC TextRanger RangeCache(const Range& rng) : range(rng) {}; }; std::deque<RangeCache> mRangeCache; //!< Cached range calculations. - PolyPolygon *mpPolyPolygon; // Surface polygon - PolyPolygon *mpLinePolyPolygon; // Line polygon + tools::PolyPolygon *mpPolyPolygon; // Surface polygon + tools::PolyPolygon *mpLinePolyPolygon; // Line polygon Rectangle *pBound; // Comprehensive rectangle sal_uInt16 nCacheSize; // Cache-Size sal_uInt16 nRight; // Distance Contour-Text @@ -75,8 +75,8 @@ public: bool IsInner() const { return bInner; } bool IsVertical() const { return bVertical; } bool HasBorder() const { return nRight || nLeft; } - const PolyPolygon& GetPolyPolygon() const { return *mpPolyPolygon; } - const PolyPolygon* GetLinePolygon() const { return mpLinePolyPolygon; } + const tools::PolyPolygon& GetPolyPolygon() const { return *mpPolyPolygon; } + const tools::PolyPolygon* GetLinePolygon() const { return mpLinePolyPolygon; } const Rectangle& GetBoundRect() { return pBound ? static_cast< const Rectangle& >(*pBound) : _GetBoundRect(); } void SetUpper( sal_uInt16 nNew ){ nUpper = nNew; } |