Drop KWinApplication::x11EventFilter(XEvent*)

Does no longer exist in Qt 5. Needs to be replaced.
This commit is contained in:
Martin Gräßlin 2013-07-22 16:13:32 +02:00
parent 11dd05425e
commit a516cf3c11
2 changed files with 0 additions and 8 deletions

View file

@ -409,13 +409,6 @@ void Application::lostSelection()
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)
{
if (Workspace::self()->workspaceEvent(e))

1
main.h
View file

@ -51,7 +51,6 @@ public:
~Application();
protected:
bool x11EventFilter(XEvent*);
bool notify(QObject* o, QEvent* e);
static void crashHandler(int signal);