summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpsdwrect.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpsdwrect.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpsdwrect.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lotuswordpro/source/filter/lwpsdwrect.cxx b/lotuswordpro/source/filter/lwpsdwrect.cxx
index 5937864ec3cf..d9f73ebde2b9 100644
--- a/lotuswordpro/source/filter/lwpsdwrect.cxx
+++ b/lotuswordpro/source/filter/lwpsdwrect.cxx
@@ -145,7 +145,7 @@ long SdwRectangle::GetHeight() const
* @short: Calculate coordinate of the original rectangle.
* @return: a prz rectangle
**************************************************************************/
-Rectangle SdwRectangle::GetOriginalRect() const
+tools::Rectangle SdwRectangle::GetOriginalRect() const
{
if (m_bRotated)
{
@@ -157,11 +157,11 @@ Rectangle SdwRectangle::GetOriginalRect() const
aCenter.Y()-(long)((double)nHeight/2+0.5));
Point aRB(aLT.X()+nWidth, aLT.Y()+nHeight);
- return Rectangle(aLT, aRB);
+ return tools::Rectangle(aLT, aRB);
}
else
{
- return Rectangle(m_nRectCorner[3], m_nRectCorner[1]);
+ return tools::Rectangle(m_nRectCorner[3], m_nRectCorner[1]);
}
}
/**************************************************************************