diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-28 07:51:19 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-30 11:47:41 +0200 |
commit | c9d4a2887c13a5df244022276dd79a5bef8af0ea (patch) | |
tree | fb849270affd5fca01fa26094c89595d18c6f588 /sw/inc/editsh.hxx | |
parent | d17d4d48b5dc3332fd03f6ef186ed2bda4665e7c (diff) |
fdo#82577: Handle PolyPolygon
Put the TOOLS PolyPolygon class in the tools namespace. Avoids clash with the Windows
PolyPolygon typedef.
Change-Id: I811ecbb3d55ba4ce66e4555a8586f60fcd57fb66
Diffstat (limited to 'sw/inc/editsh.hxx')
-rw-r--r-- | sw/inc/editsh.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index 86ea10ff7464..b869896b67de 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -40,7 +40,7 @@ #include <svtools/embedhlp.hxx> #include <boost/ptr_container/ptr_vector.hpp> -class PolyPolygon; +namespace tools { class PolyPolygon; } class SwDoc; class DateTime; class CommandExtTextInputData; @@ -593,8 +593,8 @@ public: bool IsGrfSwapOut( bool bOnlyLinked = false ) const; sal_uInt16 GetGraphicType() const; - const PolyPolygon *GetGraphicPolygon() const; - void SetGraphicPolygon( const PolyPolygon *pPoly ); + const tools::PolyPolygon *GetGraphicPolygon() const; + void SetGraphicPolygon( const tools::PolyPolygon *pPoly ); /** If there's an automatic, not manipulated polygon at the selected notxtnode, it has to be deleted, e.g. cause the object has changed. */ |