summaryrefslogtreecommitdiffstats
path: root/shell/qa/zip/testzipimpl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-01-07 13:52:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-01-08 10:38:35 +0100
commit17dd2662ccfa9d04efbea74e5d7548db5b2126d4 (patch)
tree37c0de883c43a57f54b0a483437da9de3bf4c941 /shell/qa/zip/testzipimpl.cxx
parentuse unique_ptr in sd::BluetoothServer::Impl (diff)
downloadcore-17dd2662ccfa9d04efbea74e5d7548db5b2126d4.tar.gz
core-17dd2662ccfa9d04efbea74e5d7548db5b2126d4.zip
convert "*xxx.get()" to "*xxx"
Change-Id: Ic307226591ff9702957ccdec486ccf70357eb6d9 Reviewed-on: https://gerrit.libreoffice.org/65951 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'shell/qa/zip/testzipimpl.cxx')
-rw-r--r--shell/qa/zip/testzipimpl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/qa/zip/testzipimpl.cxx b/shell/qa/zip/testzipimpl.cxx
index b2bec74a8230..8fe27d9caffb 100644
--- a/shell/qa/zip/testzipimpl.cxx
+++ b/shell/qa/zip/testzipimpl.cxx
@@ -49,7 +49,7 @@ TestZipImpl::~TestZipImpl()
bool TestZipImpl::test_directory()
{
ZipFile::DirectoryPtr_t contents = zipFile.GetDirectory();
- vector<string> &stringVector = *contents.get();
+ vector<string> &stringVector = *contents;
sort(stringVector.begin(), stringVector.end());
return expectedContents == stringVector;
}