diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-02 02:38:19 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-02 06:51:50 +0100 |
commit | a0e717596dbee0e79e481b1be9f09154331d7914 (patch) | |
tree | 9ff4b30be39d228040dcfb46ae38b232655dfb48 /chart2 | |
parent | 9a05a482b0d695a663ec4ca14e1ee43b839f78b2 (diff) |
coverity#736939: swapped arguments
Change-Id: I66f44ba02855cb9e1f9a986b6f60aa9710e117bd
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/res_BarGeometry.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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() { |