summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@redhat.com>2009-05-13 07:42:17 -0400
committerPeter Hutterer <peter.hutterer@redhat.com>2009-05-13 09:26:21 -0400
commit0d55edc6975c4e9f1bbf565bc328e3dc1e9e7132 (patch)
tree6b4142eb79ef6c8e65667b730a34cfae5ec309cd
parent3a8c82c9857f288fa341534fb400cc398f40206b (diff)
remove PID crap
-rw-r--r--src/Manager.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/Manager.cpp b/src/Manager.cpp
index f7a6be1..ce595bf 100644
--- a/src/Manager.cpp
+++ b/src/Manager.cpp
@@ -189,7 +189,6 @@ void Manager::queryInitial()
while(it != windows.end())
{
(*it)->decorate();
- (*it)->extractPID();
(*it)->manage();
it++;
}
@@ -391,10 +390,6 @@ void Manager::handleMapRequest(XMapEvent* ev)
w->mapAll();
- // In some cases we miss the PID. If we haven't got it yet, try to get it
- // now.
- w->extractPID();
-
TRACE("Client %x mapped\n", (unsigned int)ev->window);
}
@@ -416,10 +411,6 @@ void Manager::handleMapNotify(XMapEvent* ev)
TRACE(" - mapping all\n");
w->mapAll();
-
- // In some cases we miss the PID. If we haven't got it yet, try to get it
- // now.
- w->extractPID();
}
void Manager::handleConfigureRequest(XConfigureRequestEvent* ev)
@@ -873,9 +864,6 @@ void Manager::handlePropertyNotify(XPropertyEvent* ev)
if (win == NULL)
return;
- if (win->isClientWindow(ev->window))
- win->extractPID();
-
}
/**