summaryrefslogtreecommitdiffstats
path: root/sfx2/source/appl/childwin.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl/childwin.cxx')
-rw-r--r--sfx2/source/appl/childwin.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sfx2/source/appl/childwin.cxx b/sfx2/source/appl/childwin.cxx
index b833cea80c37..35d3f2ecbaf2 100644
--- a/sfx2/source/appl/childwin.cxx
+++ b/sfx2/source/appl/childwin.cxx
@@ -435,14 +435,12 @@ void SfxChildWindow::InitializeChildWinFactory_Impl(sal_uInt16 nId, SfxChildWinI
bool ParentIsFloatingWindow(vcl::Window *pParent)
{
+ if (!pParent)
+ return false;
if (pParent->GetType() == WindowType::DOCKINGWINDOW || pParent->GetType() == WindowType::TOOLBOX)
- {
return true;
- }
if (pParent->GetType() == WindowType::FLOATINGWINDOW)
- {
return true;
- }
return false;
}