Kaydet (Commit) f3259873 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1242533 silence Arguments in wrong order

Change-Id: I7031e7408f5bcd9ae85fc50952253e14d2fb2edf
üst b0e3e11c
......@@ -1618,8 +1618,10 @@ private:
Size aPaperSize( rInfo.mpPrinter->PixelToLogic( rInfo.mpPrinter->GetPaperSizePixel(), MapMode( MAP_100TH_MM ) ) );
maPrintSize.Width = aPaperSize.Height();
maPrintSize.Height = aPaperSize.Width();
const long nRotatedWidth = aOutRect.GetHeight();
const long nRotatedHeight = aOutRect.GetWidth();
aOutRect = Rectangle( Point( aPageOfs.Y(), aPageOfs.X() ),
Size( aOutRect.GetHeight(), aOutRect.GetWidth() ) );
Size( nRotatedWidth, nRotatedHeight ) );
}
Link aOldLink;
......
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