summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/android/androidinst.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/android/androidinst.cxx b/vcl/android/androidinst.cxx
index e54bc68dceb6..c976a7c89732 100644
--- a/vcl/android/androidinst.cxx
+++ b/vcl/android/androidinst.cxx
@@ -36,9 +36,9 @@ public:
virtual bool ErrorTrapPop( bool ) { return false; }
};
-void AndroidSalInstance::GetWorkArea( Rectangle& rRect )
+void AndroidSalInstance::GetWorkArea(tools::Rectangle& rRect)
{
- rRect = Rectangle( Point( 0, 0 ),
+ rRect = tools::Rectangle( Point( 0, 0 ),
Size( viewWidth, viewHeight ) );
}
@@ -105,7 +105,7 @@ public:
SetPosSize(0, 0, viewWidth, viewHeight, SAL_FRAME_POSSIZE_WIDTH | SAL_FRAME_POSSIZE_HEIGHT);
}
- virtual void GetWorkArea( Rectangle& rRect )
+ virtual void GetWorkArea(tools::Rectangle& rRect)
{
AndroidSalInstance::getInstance()->GetWorkArea( rRect );
}