Kaydet (Commit) 886efb95 authored tarafından Johnny_M's avatar Johnny_M Kaydeden (comit) Michael Stahl

Translate German variable names

Akt -> Current in ww8graf2

Change-Id: Idf70cdc5ebac2385ad7a74084b58c1a1aae652a7
Reviewed-on: https://gerrit.libreoffice.org/51037Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst bc320523
......@@ -322,14 +322,14 @@ WW8PicDesc::WW8PicDesc( const WW8_PIC& rPic )
nCT = rPic.dyaCropTop;
nCB = rPic.dyaCropBottom;
long nAktWidth = nOriWidth - (nCL + nCR); // Size after crop
long nAktHeight = nOriHeight - (nCT + nCB);
if (!nAktWidth)
nAktWidth = 1;
if (!nAktHeight)
nAktHeight = 1;
nWidth = nAktWidth * rPic.mx / 1000; // Writer Size
nHeight = nAktHeight * rPic.my / 1000;
long nCurrentWidth = nOriWidth - (nCL + nCR); // Size after crop
long nCurrentHeight = nOriHeight - (nCT + nCB);
if (!nCurrentWidth)
nCurrentWidth = 1;
if (!nCurrentHeight)
nCurrentHeight = 1;
nWidth = nCurrentWidth * rPic.mx / 1000; // Writer Size
nHeight = nCurrentHeight * rPic.my / 1000;
}
void SwWW8ImplReader::ReplaceObj(const SdrObject &rReplaceObj,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment