From 17dd2662ccfa9d04efbea74e5d7548db5b2126d4 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 7 Jan 2019 13:52:59 +0200 Subject: convert "*xxx.get()" to "*xxx" Change-Id: Ic307226591ff9702957ccdec486ccf70357eb6d9 Reviewed-on: https://gerrit.libreoffice.org/65951 Tested-by: Jenkins Reviewed-by: Noel Grandin --- shell/qa/zip/testzipimpl.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') 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 &stringVector = *contents.get(); + vector &stringVector = *contents; sort(stringVector.begin(), stringVector.end()); return expectedContents == stringVector; } -- cgit