summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-07-08 09:22:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-07-08 09:22:16 +0200
commit022331e8ddfa1b0b95cba66a322fb244b4c1cad0 (patch)
tree2209774dd7f6f77ef066213ee4729611ce9b0d45
parent4deb5e7168935b71e9eb036c0b47c400934d9e18 (diff)
Fix MSVC build
Change-Id: I784c0325c22708ab48217a9c06759d9fc1d7d5eb
-rw-r--r--sd/source/ui/presenter/PresenterHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sd/source/ui/presenter/PresenterHelper.cxx b/sd/source/ui/presenter/PresenterHelper.cxx
index c6ea5e096198..dc606fdb7209 100644
--- a/sd/source/ui/presenter/PresenterHelper.cxx
+++ b/sd/source/ui/presenter/PresenterHelper.cxx
@@ -91,7 +91,7 @@ Reference<awt::XWindow> SAL_CALL PresenterHelper::createWindow (
{
// Make the frame window transparent and make the parent able to
// draw behind it.
- if (pParentWindow != NULL)
+ if (pParentWindow.get() != NULL)
pParentWindow->EnableChildTransparentMode(true);
}