[Libreoffice-commits] core.git: sd/source
Stephan Bergmann
sbergman at redhat.com
Wed Jul 8 00:22:49 PDT 2015
sd/source/ui/presenter/PresenterHelper.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 022331e8ddfa1b0b95cba66a322fb244b4c1cad0
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Jul 8 09:22:16 2015 +0200
Fix MSVC build
Change-Id: I784c0325c22708ab48217a9c06759d9fc1d7d5eb
diff --git a/sd/source/ui/presenter/PresenterHelper.cxx b/sd/source/ui/presenter/PresenterHelper.cxx
index c6ea5e0..dc606fd 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);
}
More information about the Libreoffice-commits
mailing list