Drop Application::isClosingX11Connection()

It's unused.
This commit is contained in:
Vlad Zahorodnii 2022-05-12 16:32:11 +03:00
parent 89b35c3238
commit e26dca110e
2 changed files with 0 additions and 16 deletions

View file

@ -190,14 +190,6 @@ public:
return m_defaultScreen;
}
/**
* Returns @c true if we're in the middle of destroying the X11 connection.
*/
bool isClosingX11Connection() const
{
return m_isClosingX11Connection;
}
#if KWIN_BUILD_ACTIVITIES
bool usesKActivities() const
{
@ -286,10 +278,6 @@ protected:
{
m_terminating = true;
}
void setClosingX11Connection(bool set)
{
m_isClosingX11Connection = set;
}
protected:
static int crashes;
@ -311,7 +299,6 @@ private:
#endif
Platform *m_platform = nullptr;
bool m_terminating = false;
bool m_isClosingX11Connection = false;
};
inline static Application *kwinApp()

View file

@ -152,7 +152,6 @@ void Xwayland::uninstallSocketNotifier()
void Xwayland::handleXwaylandFinished()
{
disconnect(kwinApp()->platform(), &Platform::primaryOutputChanged, this, &Xwayland::updatePrimary);
m_app->setClosingX11Connection(true);
delete m_xrandrEventsFilter;
m_xrandrEventsFilter = nullptr;
@ -165,8 +164,6 @@ void Xwayland::handleXwaylandFinished()
m_selectionOwner.reset();
destroyX11Connection();
m_app->setClosingX11Connection(false);
}
void Xwayland::handleXwaylandReady()