summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2010-05-11 17:00:26 +0200
committerIvo Hinkelmann <ihi@openoffice.org>2010-05-11 17:00:26 +0200
commit40bff9f35c2cdaec9fac876392e3f0fb787935ce (patch)
treeb14e074176933b253ea5822dc13ac7c50aa94639 /oox
parent688439586f562e2c5322a021bf9b8eb105e64423 (diff)
#i10000# #i110973# removed warning
Diffstat (limited to 'oox')
-rw-r--r--oox/inc/oox/drawingml/shape.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/inc/oox/drawingml/shape.hxx b/oox/inc/oox/drawingml/shape.hxx
index 94fb6a4f29fc..f4f5a5ee68fe 100644
--- a/oox/inc/oox/drawingml/shape.hxx
+++ b/oox/inc/oox/drawingml/shape.hxx
@@ -123,7 +123,7 @@ public:
void setName( const rtl::OUString& rName ) { msName = rName; }
::rtl::OUString getName( ) { return msName; }
void setId( const rtl::OUString& rId ) { msId = rId; }
- void setSubType( sal_uInt32 nSubType ) { mnSubType = nSubType; }
+ void setSubType( sal_Int32 nSubType ) { mnSubType = nSubType; }
sal_Int32 getSubType() const { return mnSubType; }
void setSubTypeIndex( sal_uInt32 nSubTypeIndex ) { mnSubTypeIndex = nSubTypeIndex; }
sal_Int32 getSubTypeIndex() const { return mnSubTypeIndex; }
@@ -190,8 +190,8 @@ protected:
rtl::OUString msServiceName;
rtl::OUString msName;
rtl::OUString msId;
- sal_uInt32 mnSubType; // if this type is not zero, then the shape is a placeholder
- sal_uInt32 mnSubTypeIndex;
+ sal_Int32 mnSubType; // if this type is not zero, then the shape is a placeholder
+ sal_Int32 mnSubTypeIndex;
ShapeStyleRefMap maShapeStyleRefs;