summaryrefslogtreecommitdiff
path: root/vbahelper/source/vbahelper/vbahelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/vbahelper/vbahelper.cxx')
-rw-r--r--vbahelper/source/vbahelper/vbahelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbahelper.cxx b/vbahelper/source/vbahelper/vbahelper.cxx
index 43d8c702b0f2..09e2de5fd52a 100644
--- a/vbahelper/source/vbahelper/vbahelper.cxx
+++ b/vbahelper/source/vbahelper/vbahelper.cxx
@@ -914,7 +914,7 @@ double UserFormGeometryHelper::implGetSize( bool bHeight, bool bOuter ) const
{
if( const vcl::Window* pWindow = VCLUnoHelper::GetWindow( mxWindow ) )
{
- Rectangle aOuterRect = pWindow->GetWindowExtentsRelative( nullptr );
+ tools::Rectangle aOuterRect = pWindow->GetWindowExtentsRelative( nullptr );
aSizePixel = awt::Size( aOuterRect.getWidth(), aOuterRect.getHeight() );
}
}
@@ -938,7 +938,7 @@ void UserFormGeometryHelper::implSetSize( double fSize, bool bHeight, bool bOute
{
if( const vcl::Window* pWindow = VCLUnoHelper::GetWindow( mxWindow ) )
{
- Rectangle aOuterRect = pWindow->GetWindowExtentsRelative( nullptr );
+ tools::Rectangle aOuterRect = pWindow->GetWindowExtentsRelative( nullptr );
if( !aOuterRect.IsEmpty() )
{
awt::Rectangle aInnerRect = mxWindow->getPosSize();