summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-12-09 09:12:49 +0200
committerTor Lillqvist <tml@collabora.com>2016-12-09 13:15:33 +0200
commit073f8cdbb77d62a6838c78ff63fca73896b86c79 (patch)
treec706fac3fa715613170eff1570b3b342c8b6506a /ucb
parentf5edbb4158e86bfea7267115395b64e60fd61dc7 (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.hxx2
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;