diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-12-09 09:12:49 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-12-09 13:15:33 +0200 |
commit | 073f8cdbb77d62a6838c78ff63fca73896b86c79 (patch) | |
tree | c706fac3fa715613170eff1570b3b342c8b6506a /ucb | |
parent | f5edbb4158e86bfea7267115395b64e60fd61dc7 (diff) |
loplugin:refcounting
Fixes: "uno::Reference field with template parameter that does not
contain ::static_type() css::uno::Reference<SerfInputStream>, parent
is http_dav_ucp::SerfGetReqProcImpl, should probably be using
rtl::Reference instead [loplugin:refcounting]"
Change-Id: I43211bb397031a4961df77ee39038e6ef9da6bb1
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx b/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx index f463f422a4f8..3271fb954800 100644 --- a/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx +++ b/ucb/source/ucp/webdav/SerfGetReqProcImpl.hxx @@ -71,7 +71,7 @@ protected: void handleEndOfResponseData( serf_bucket_t * inSerfResponseBucket ) override; private: - css::uno::Reference< SerfInputStream > xInputStream; + rtl::Reference< SerfInputStream > xInputStream; css::uno::Reference< css::io::XOutputStream > xOutputStream; const std::vector< OUString > * mpHeaderNames; DAVResource* mpResource; |