summaryrefslogtreecommitdiff
path: root/sfx2/source/view/viewprn.cxx
diff options
context:
space:
mode:
authorNoel <noel.grandin@collabora.co.uk>2021-02-20 12:50:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-02-20 19:21:52 +0100
commitd49277fc7c017c5a62a0c28af782cfc04a6460ab (patch)
tree62029090284267702379cd7b82422597a86561dd /sfx2/source/view/viewprn.cxx
parent7c992bd895574eb1faf473875f8e655e9b73cb79 (diff)
loplugin:refcounting in sfx2
Change-Id: I22ca5dab32fb4bf9a1ab7d478105db2d12e14b14 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111262 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/source/view/viewprn.cxx')
-rw-r--r--sfx2/source/view/viewprn.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/view/viewprn.cxx b/sfx2/source/view/viewprn.cxx
index a01be90a0395..0007daf4a2f8 100644
--- a/sfx2/source/view/viewprn.cxx
+++ b/sfx2/source/view/viewprn.cxx
@@ -203,7 +203,7 @@ Sequence< beans::PropertyValue > SfxPrinterController::getMergedOptions() const
if( xPrinter.get() != mpLastPrinter )
{
mpLastPrinter = xPrinter.get();
- VCLXDevice* pXDevice = new VCLXDevice();
+ rtl::Reference<VCLXDevice> pXDevice = new VCLXDevice();
pXDevice->SetOutputDevice( mpLastPrinter );
mxDevice.set( pXDevice );
}