summaryrefslogtreecommitdiff
path: root/framework/source/dispatch/closedispatcher.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/dispatch/closedispatcher.cxx')
-rw-r--r--framework/source/dispatch/closedispatcher.cxx17
1 files changed, 1 insertions, 16 deletions
diff --git a/framework/source/dispatch/closedispatcher.cxx b/framework/source/dispatch/closedispatcher.cxx
index 1fc959734168..ed79058194ab 100644
--- a/framework/source/dispatch/closedispatcher.cxx
+++ b/framework/source/dispatch/closedispatcher.cxx
@@ -1,4 +1,4 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
@@ -38,7 +38,6 @@
#include <vcl/window.hxx>
#include <vcl/svapp.hxx>
#include <vcl/syswin.hxx>
-#include <vcl/wrkwin.hxx>
#include <unotools/moduleoptions.hxx>
using namespace com::sun::star;
@@ -177,20 +176,6 @@ void SAL_CALL CloseDispatcher::dispatchWithNotification(const css::util::URL&
return;
}
-#ifdef MACOSX
- // FIXME: In full-screen mode, if we call ShowFullScreenMode(false) here, it leads to a crash
- // later, so disallow closing for now. And yes, if we don't allow closing a window that is in
- // full-screen mode, the menu entry should be greyed out then, too. But doing that looks
- // insanely hard, too. I am so tempted to just abort this and instead just don't even try to
- // support the system full-screen mode.
- if (m_pSysWindow)
- {
- WorkWindow *pWorkWindow = dynamic_cast<WorkWindow*>(m_pSysWindow.get());
- if (pWorkWindow && pWorkWindow->IsFullScreenMode())
- return;
- }
-#endif
-
if (m_pSysWindow && m_pSysWindow->GetCloseHdl().IsSet())
{
// The closing frame has its own close handler. Call it instead.