summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-05-29 23:44:04 +0200
committerMichael Stahl <mstahl@redhat.com>2013-05-29 23:52:13 +0200
commit713cfaf98425e048963e8044be25cc0aa0840b28 (patch)
tree602baa8a5cd5503a43bf22463f48d9012e531afa /sw
parent68ba2785c55eaa1ea70ce135bdad5322b0e04ed7 (diff)
WaE: C4146 unary operator applied to unsigned type
Change-Id: Ic23667dc5fb455a7b11f49f4a13df2c49496f702
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/wrtw8esh.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx
index be4f594a009c..e33455252b59 100644
--- a/sw/source/filter/ww8/wrtw8esh.cxx
+++ b/sw/source/filter/ww8/wrtw8esh.cxx
@@ -1809,8 +1809,8 @@ sal_Int32 SwBasicEscherEx::WriteFlyFrameAttr(const SwFrmFmt& rFmt,
const sal_uInt32 nShadowType = 131074; // shadow type of ms word. need to set the default value.
sal_uInt32 nColor = (sal_uInt32)(pSI->GetColor().GetColor()) ;
- sal_uInt32 nOffX = pSI->GetWidth() * nCstScale;
- sal_uInt32 nOffY = pSI->GetWidth() * nCstScale;
+ sal_Int32 nOffX = pSI->GetWidth() * nCstScale;
+ sal_Int32 nOffY = pSI->GetWidth() * nCstScale;
sal_uInt32 nShadow = nShadowType;
SvxShadowLocation eLocation = pSI->GetLocation();