Drop KWinApplication::x11EventFilter(XEvent*)
Does no longer exist in Qt 5. Needs to be replaced.
This commit is contained in:
parent
11dd05425e
commit
a516cf3c11
2 changed files with 0 additions and 8 deletions
7
main.cpp
7
main.cpp
|
@ -409,13 +409,6 @@ void Application::lostSelection()
|
||||||
quit();
|
quit();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Application::x11EventFilter(XEvent* e)
|
|
||||||
{
|
|
||||||
if (Workspace::self() && Workspace::self()->workspaceEvent(e))
|
|
||||||
return true;
|
|
||||||
return KApplication::x11EventFilter(e);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Application::notify(QObject* o, QEvent* e)
|
bool Application::notify(QObject* o, QEvent* e)
|
||||||
{
|
{
|
||||||
if (Workspace::self()->workspaceEvent(e))
|
if (Workspace::self()->workspaceEvent(e))
|
||||||
|
|
1
main.h
1
main.h
|
@ -51,7 +51,6 @@ public:
|
||||||
~Application();
|
~Application();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
bool x11EventFilter(XEvent*);
|
|
||||||
bool notify(QObject* o, QEvent* e);
|
bool notify(QObject* o, QEvent* e);
|
||||||
static void crashHandler(int signal);
|
static void crashHandler(int signal);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue