summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-01-17 18:16:10 +0100
committerStephan Bergmann <sbergman@redhat.com>2015-01-20 09:06:46 +0100
commit876413440d051f7bae8b3d222320f4bc3b617b79 (patch)
treedd115b0b28954f6da80a45c01c2ed98a95842aa2 /include
parent19970e90fe52e8ab987f6adafa353d5c2cd37ac9 (diff)
Some more loplugin:cstylecast: comphelper
Change-Id: I6d3ffb195a7c9a3c44744d296fb9d9eca00115cd
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/servicehelper.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/servicehelper.hxx b/include/comphelper/servicehelper.hxx
index 73064cd35897..1f5f44a0ff32 100644
--- a/include/comphelper/servicehelper.hxx
+++ b/include/comphelper/servicehelper.hxx
@@ -31,7 +31,7 @@ private:
public:
UnoTunnelIdInit() : m_aSeq(16)
{
- rtl_createUuid( (sal_uInt8*)m_aSeq.getArray(), 0, sal_True );
+ rtl_createUuid( reinterpret_cast<sal_uInt8*>(m_aSeq.getArray()), 0, sal_True );
}
const ::com::sun::star::uno::Sequence< sal_Int8 >& getSeq() const { return m_aSeq; }
};