diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-05-03 16:43:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-05-03 16:43:12 +0100 |
commit | d0dcf1d65c79c4c607a1ac24c0c57f4b1a935294 (patch) | |
tree | 714328765aaaa82f0cd96cde4d479f97e7037788 | |
parent | cdcf2fcefcf05d25411d1cce685f410256ff46cf (diff) |
WaE: variables set but unused
Change-Id: I03bec3b0b4b9d4910b2baab86fa95efe2f5b9ef2
-rw-r--r-- | sc/source/core/data/global.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sc/source/core/data/global.cxx b/sc/source/core/data/global.cxx index bfcd6f49e2b7..9a3de1077879 100644 --- a/sc/source/core/data/global.cxx +++ b/sc/source/core/data/global.cxx @@ -1288,13 +1288,11 @@ void ScGlobal::ApplyShapeOrientationInfo( std::vector< OrientationInfo >& infos, for ( int i = 0; i < it->maAddress.Column; ++i ) { long nTwip = aViewData.GetDocument()->GetColWidth( i, it->maAddress.Sheet ); - Point aTmpPos = pDevice->LogicToPixel( Point( nTwip, nTwip ), aTmpMode ); nWidth += ( nTwip * aViewData.GetPPTX() ); } for ( int i = 0; i < it->maAddress.Row; ++i ) { long nTwip = aViewData.GetDocument()->GetRowHeight( i, it->maAddress.Sheet ); - Point aTmpPos = pDevice->LogicToPixel( Point( nTwip, nTwip ), aTmpMode ); nHeight += ( nTwip * aViewData.GetPPTY() ); } |