summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-02 11:27:27 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-02 11:27:27 +0200
commit21d0ae24a8403cab29dbab3d281131c679330b63 (patch)
tree551a8c701b70ab1b2ad4c8b4cee15612e36c44b1 /oox
parent1fb55375be652237d82069b71c2cdb5ac4788181 (diff)
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: I4373b1698ed81cd84dc5f319fde003f9b8c301fb
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/drawingml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index b02e8b1741c4..236678a161ad 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1479,7 +1479,7 @@ void DrawingML::GetUUID( OStringBuffer& rBuffer )
{
Sequence< sal_uInt8 > aSeq( 16 );
static const char cDigits[17] = "0123456789ABCDEF";
- rtl_createUuid( (sal_uInt8*)aSeq.getArray(), 0, true );
+ rtl_createUuid( aSeq.getArray(), 0, true );
int i;
rBuffer.append( '{' );