remove some debug couts
This commit is contained in:
parent
b4816f2417
commit
f693859b3e
2 changed files with 0 additions and 2 deletions
|
@ -138,7 +138,6 @@ void epist::process_event(XEvent *e) {
|
||||||
else
|
else
|
||||||
root = e->xany.window;
|
root = e->xany.window;
|
||||||
|
|
||||||
cout << "event\n";
|
|
||||||
ScreenList::const_iterator it, end = _screens.end();
|
ScreenList::const_iterator it, end = _screens.end();
|
||||||
for (it = _screens.begin(); it != end; ++it) {
|
for (it = _screens.begin(); it != end; ++it) {
|
||||||
if ((*it)->rootWindow() == root) {
|
if ((*it)->rootWindow() == root) {
|
||||||
|
|
|
@ -145,7 +145,6 @@ void screen::processEvent(const XEvent &e) {
|
||||||
void screen::handleKeypress(const XEvent &e) {
|
void screen::handleKeypress(const XEvent &e) {
|
||||||
ActionList::const_iterator it = _epist->actions().begin();
|
ActionList::const_iterator it = _epist->actions().begin();
|
||||||
ActionList::const_iterator end = _epist->actions().end();
|
ActionList::const_iterator end = _epist->actions().end();
|
||||||
cout << "key press\n";
|
|
||||||
for (; it != end; ++it) {
|
for (; it != end; ++it) {
|
||||||
if (e.xkey.keycode == it->keycode() &&
|
if (e.xkey.keycode == it->keycode() &&
|
||||||
e.xkey.state == it->modifierMask()) {
|
e.xkey.state == it->modifierMask()) {
|
||||||
|
|
Loading…
Reference in a new issue