summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-03 10:56:40 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-03 10:56:40 +1100
commit9c77bb8fde80d7f35676cb1e41e5b122ac96b6a4 (patch)
tree9aa81155efb371e2d3d15426f0449a32191ebeba /toolkit
parent145a569fb15b77f3e85ce50295511111bb1d8adc (diff)
tdf#39468 toolkit: translate some German comments in the VCL UNO helper file
Change-Id: Ib432f2cbfc71ebfec0ef1ecae99ae3fde1a4d946
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/helper/vclunohelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/helper/vclunohelper.cxx b/toolkit/source/helper/vclunohelper.cxx
index ddab490c0f93..20bcae539fca 100644
--- a/toolkit/source/helper/vclunohelper.cxx
+++ b/toolkit/source/helper/vclunohelper.cxx
@@ -381,7 +381,7 @@ css::awt::FontDescriptor VCLUnoHelper::CreateFontDescriptor( const vcl::Font& rF
aFD.Orientation = rFont.GetOrientation();
aFD.Kerning = rFont.IsKerning();
aFD.WordLineMode = rFont.IsWordLineMode();
- aFD.Type = 0; // ??? => Nur an Metric...
+ aFD.Type = 0; // ??? => Only in Metric...
return aFD;
}
@@ -411,7 +411,7 @@ vcl::Font VCLUnoHelper::CreateFont( const css::awt::FontDescriptor& rDescr, cons
if ( (FontStrikeout)rDescr.Strikeout != STRIKEOUT_DONTKNOW )
aFont.SetStrikeout( (FontStrikeout)rDescr.Strikeout );
- // Kein DONTKNOW
+ // Not DONTKNOW
aFont.SetOrientation( (short)rDescr.Orientation );
aFont.SetKerning( static_cast<FontKerning>(rDescr.Kerning) );
aFont.SetWordLineMode( rDescr.WordLineMode );