X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fbindings.cc;h=6a135b6d6821a94c4e2b812741529371af171730;hb=1297c7c157584599f474aa13effaca5a866bfb14;hp=97dd2aa1f8e8b1c183e38ee59e8938e8fe88f9c2;hpb=e6ae9e51f792e4eb3316e6b4b75bd864535d7665;p=chaz%2Fopenbox diff --git a/src/bindings.cc b/src/bindings.cc index 97dd2aa1..6a135b6d 100644 --- a/src/bindings.cc +++ b/src/bindings.cc @@ -410,7 +410,7 @@ bool OBBindings::addButton(const std::string &but, MouseContext context, // grab the button on all clients for (int sn = 0; sn < Openbox::instance->screenCount(); ++sn) { OBScreen *s = Openbox::instance->screen(sn); - OBScreen::ClientList::iterator c_it, c_end = s->clients.end(); + OBClient::List::iterator c_it, c_end = s->clients.end(); for (c_it = s->clients.begin(); c_it != c_end; ++c_it) { grabButton(true, bind->binding, context, *c_it); } @@ -435,7 +435,7 @@ void OBBindings::removeAllButtons() // ungrab the button on all clients for (int sn = 0; sn < Openbox::instance->screenCount(); ++sn) { OBScreen *s = Openbox::instance->screen(sn); - OBScreen::ClientList::iterator c_it, c_end = s->clients.end(); + OBClient::List::iterator c_it, c_end = s->clients.end(); for (c_it = s->clients.begin(); c_it != c_end; ++c_it) { grabButton(false, (*it)->binding, (MouseContext)i, *c_it); } @@ -481,8 +481,6 @@ void OBBindings::grabButtons(bool grab, OBClient *client) void OBBindings::fireButton(ButtonData *data) { - printf("but.mods %d.%d\n", data->button, data->state); - if (data->context == MC_Window) { // these are grabbed in Sync mode to allow the press to be normal to the // client