INTEGRATION: CWS aw033 (1.7.58); FILE MERGED

2008/07/14 08:40:43 aw 1.7.58.2: changes after resync
2008/07/10 12:58:57 aw 1.7.58.1: #i39532# XOutputDevice removed, PrepareDelete removed
This commit is contained in:
Vladimir Glazounov 2008-08-19 21:24:18 +00:00
parent 87eb2d207d
commit eb1690e721

View file

@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: txtrange.hxx,v $
* $Revision: 1.7 $
* $Revision: 1.8 $
*
* This file is part of OpenOffice.org.
*
@ -42,6 +42,10 @@ class PolyPolygon;
class Range;
class Rectangle;
namespace basegfx {
class B2DPolyPolygon;
}
typedef SvLongs* SvLongsPtr;
/*************************************************************************
@ -96,7 +100,7 @@ public:
const PolyPolygon& GetPolyPolygon() const { return *mpPolyPolygon; }
const PolyPolygon* GetLinePolygon() const { return mpLinePolyPolygon; }
const Rectangle& GetBoundRect()
{ return pBound ? *pBound : _GetBoundRect(); }
{ return pBound ? static_cast< const Rectangle& >(*pBound) : _GetBoundRect(); }
void SetUpper( USHORT nNew ){ nUpper = nNew; }
void SetLower( USHORT nNew ){ nLower = nNew; }
void SetVertical( BOOL bNew );