summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2019-04-07 12:01:19 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2019-04-08 11:54:48 +0200
commita3ee61550e4308782d53265c4b1685aeb8bf0ed7 (patch)
treed6cdff01320e2fa38d39d51c18aaa04899636ddd /svx
parent306758ab3e06f7c730bb1625c2f3fcce7a912fa3 (diff)
Translate German variable names
Please feel free to suggest a better name, if desired Change-Id: Ie7ea0dbeb13970fb1b1680740e6a2b40871421a9 Reviewed-on: https://gerrit.libreoffice.org/70371 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/svdraw/svdotext.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index 10f42a96bb17..898d21bdbb68 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -826,7 +826,7 @@ void SdrTextObj::ImpSetCharStretching(SdrOutliner& rOutliner, const Size& rTextS
if(pMtf)
pMtf->Pause(true);
- vcl::Font aFontMerk(pOut->GetFont());
+ vcl::Font aOriginalFont(pOut->GetFont());
vcl::Font aTmpFont( OutputDevice::GetDefaultFont( DefaultFontType::SERIF, LANGUAGE_SYSTEM, GetDefaultFontFlags::OnlyOne ) );
aTmpFont.SetFontSize(Size(0,100));
@@ -835,7 +835,7 @@ void SdrTextObj::ImpSetCharStretching(SdrOutliner& rOutliner, const Size& rTextS
aTmpFont.SetFontSize(Size(800,100));
pOut->SetFont(aTmpFont);
Size aSize2(pOut->GetTextWidth(aTestString), pOut->GetTextHeight());
- pOut->SetFont(aFontMerk);
+ pOut->SetFont(aOriginalFont);
if(pMtf)
pMtf->Pause(false);