summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2015-03-16 21:50:14 +0000
committerMichael Meeks <michael.meeks@collabora.com>2015-04-10 11:32:59 +0100
commit683cb12163803af2888b17ee4902e319c8bc49b4 (patch)
tree552acbf6a60e0e81945c4dfbe091ae6532285c41 /starmath
parent359cbefc23d6283f32ca428c98de8aec4a773fa2 (diff)
fix thinko in starmath; time to sleep.
Change-Id: I6846e56062fdde394e4039de7cde42b0560f34b3
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/unomodel.cxx4
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();