summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-03-22 22:44:38 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-03-23 06:13:13 +0000
commit9f5b1c4f2afb5844007f1bd24761acd72908cb4f (patch)
treeab416a69216a7ae92b239ac94e5e62f2c256493d /toolkit
parentcba153ca03ce201948e7d18438abd6f33054ad5e (diff)
Typo: boder->border
Change-Id: I46940c5b584f93b478b1dfca9aa66e036fe951c2 Reviewed-on: https://gerrit.libreoffice.org/35547 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/helper/formpdfexport.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolkit/source/helper/formpdfexport.cxx b/toolkit/source/helper/formpdfexport.cxx
index e02ba19bbdfa..0503a57edd23 100644
--- a/toolkit/source/helper/formpdfexport.cxx
+++ b/toolkit/source/helper/formpdfexport.cxx
@@ -313,9 +313,9 @@ namespace toolkitform
OUString sBorderColorPropertyName( "BorderColor" );
if ( xPSI->hasPropertyByName( sBorderColorPropertyName ) )
{
- sal_Int32 nBoderColor = COL_TRANSPARENT;
- if ( xModelProps->getPropertyValue( sBorderColorPropertyName ) >>= nBoderColor )
- Descriptor->BorderColor = Color( nBoderColor );
+ sal_Int32 nBorderColor = COL_TRANSPARENT;
+ if ( xModelProps->getPropertyValue( sBorderColorPropertyName ) >>= nBorderColor )
+ Descriptor->BorderColor = Color( nBorderColor );
else
Descriptor->BorderColor = Color( COL_BLACK );
}