diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:15:31 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:37 +0200 |
commit | f555ab4e96a3d796c67cbec1c948cb920ebb3750 (patch) | |
tree | cfdec7da980d5537d5e41e5b23c5497836430e23 /include/comphelper/servicehelper.hxx | |
parent | 08bb436ff9661fb4c2df156ee4c8b4be80b9369c (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Idb7e5ff0c73bbc2c462b92cd96444eb5d2d4194b
Diffstat (limited to 'include/comphelper/servicehelper.hxx')
-rw-r--r-- | include/comphelper/servicehelper.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/servicehelper.hxx b/include/comphelper/servicehelper.hxx index c488981e1ccf..e2161e32db86 100644 --- a/include/comphelper/servicehelper.hxx +++ b/include/comphelper/servicehelper.hxx @@ -31,7 +31,7 @@ private: public: UnoTunnelIdInit() : m_aSeq(16) { - rtl_createUuid( reinterpret_cast<sal_uInt8*>(m_aSeq.getArray()), nullptr, sal_True ); + rtl_createUuid( reinterpret_cast<sal_uInt8*>(m_aSeq.getArray()), nullptr, true ); } const css::uno::Sequence< sal_Int8 >& getSeq() const { return m_aSeq; } }; |