diff options
-rw-r--r-- | starmath/source/unomodel.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/unomodel.cxx b/starmath/source/unomodel.cxx index 5ce26b5fd849..b2c6933b4b40 100644 --- a/starmath/source/unomodel.cxx +++ b/starmath/source/unomodel.cxx @@ -1023,8 +1023,8 @@ void SAL_CALL SmModel::render( if (xRenderDevice.is()) { VCLXDevice* pDevice = VCLXDevice::GetImplementation( xRenderDevice ); - VclRef< OutputDevice> pOut = pDevice ? pDevice->GetOutputDevice() - : VclRef< OutputDevice >(); + VclPtr< OutputDevice> pOut = pDevice ? pDevice->GetOutputDevice() + : VclPtr< OutputDevice >(); if (!pOut) throw RuntimeException(); |