summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-19 18:03:46 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-19 22:07:44 +0200
commit0be225fb60f41b29f283eddd83938c047c552893 (patch)
treeffb8f5edb93c8b762e860db9c0505431ce940425 /framework
parent8a07588cb648e26a3fc06643b0210fc75201afb8 (diff)
Fix typos
Change-Id: Ideee477b0c8f0d472a607ed69ba51351d87f61bc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101010 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'framework')
-rw-r--r--framework/source/helper/dockingareadefaultacceptor.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/source/helper/dockingareadefaultacceptor.cxx b/framework/source/helper/dockingareadefaultacceptor.cxx
index 9d51d2052516..d167bc11157f 100644
--- a/framework/source/helper/dockingareadefaultacceptor.cxx
+++ b/framework/source/helper/dockingareadefaultacceptor.cxx
@@ -78,7 +78,7 @@ sal_Bool SAL_CALL DockingAreaDefaultAcceptor::requestDockingAreaSpace( const css
css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
- css::awt::Size aMinSize( 0, 0 ); // = xLayoutContrains->getMinimumSize();
+ css::awt::Size aMinSize( 0, 0 ); // = xLayoutConstraints->getMinimumSize();
// Check if request border space would decrease component window size below minimum size
if ((( aSize.Width - RequestedSpace.X - RequestedSpace.Width ) < aMinSize.Width ) ||
@@ -113,7 +113,7 @@ void SAL_CALL DockingAreaDefaultAcceptor::setDockingAreaSpace( const css::awt::R
css::awt::DeviceInfo aInfo = xDevice->getInfo();
css::awt::Size aSize ( aRectangle.Width - aInfo.LeftInset - aInfo.RightInset ,
aRectangle.Height - aInfo.TopInset - aInfo.BottomInset );
- css::awt::Size aMinSize( 0, 0 );// = xLayoutContrains->getMinimumSize();
+ css::awt::Size aMinSize( 0, 0 );// = xLayoutConstraints->getMinimumSize();
// Check if request border space would decrease component window size below minimum size
sal_Int32 nWidth = aSize.Width - BorderSpace.X - BorderSpace.Width;