From a0e717596dbee0e79e481b1be9f09154331d7914 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 2 Mar 2013 02:38:19 +0100 Subject: coverity#736939: swapped arguments Change-Id: I66f44ba02855cb9e1f9a986b6f60aa9710e117bd --- chart2/source/controller/dialogs/res_BarGeometry.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart2/source/controller/dialogs/res_BarGeometry.cxx b/chart2/source/controller/dialogs/res_BarGeometry.cxx index 303f219bd9f7..791b9c889242 100644 --- a/chart2/source/controller/dialogs/res_BarGeometry.cxx +++ b/chart2/source/controller/dialogs/res_BarGeometry.cxx @@ -60,7 +60,7 @@ Size BarGeometryResources::GetSizePixel() const if( nWidth < m_aFT_Geometry.GetSizePixel().Width() ) nWidth = m_aFT_Geometry.GetSizePixel().Width(); - return Size( nHeight, nWidth ); + return Size( nWidth, nHeight ); } BarGeometryResources::~BarGeometryResources() { -- cgit