diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-08 12:29:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-14 11:50:00 +0200 |
commit | 8447d31e529985ef7fc71933f0e55685530f9fc9 (patch) | |
tree | c8f01ee85837024482ab77c8770c8bca442ddd06 /vcl/osx | |
parent | 1cf27cb44380f4a2bd6778c2dbbdef2a2a00cbc8 (diff) |
return SalBitmap using std::shared_ptr
since we hold it like that in Bitmap anyway
Change-Id: I6264dfaaae6210cb008df5db8a421fc80c508f5b
Reviewed-on: https://gerrit.libreoffice.org/55458
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/osx')
-rw-r--r-- | vcl/osx/salinst.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/osx/salinst.cxx b/vcl/osx/salinst.cxx index 03d3f7a2663f..972a7fafcd76 100644 --- a/vcl/osx/salinst.cxx +++ b/vcl/osx/salinst.cxx @@ -960,9 +960,9 @@ SalSystem* AquaSalInstance::CreateSalSystem() return new AquaSalSystem(); } -SalBitmap* AquaSalInstance::CreateSalBitmap() +std::shared_ptr<SalBitmap> AquaSalInstance::CreateSalBitmap() { - return new QuartzSalBitmap(); + return std::make_shared<QuartzSalBitmap>(); } OUString AquaSalInstance::getOSVersion() |