all repos — openbox @ 4c5671eecae90077dd930bf36af3be9e13305985

openbox fork - make it a bit more like ryudo

remove unused old handlers
Dana Jansens danakj@orodu.net
commit

4c5671eecae90077dd930bf36af3be9e13305985

parent

73026adf3d0a2939b302b3306d7937e7aa5ba3dd

2 files changed, 0 insertions(+), 22 deletions(-)

jump to
M src/actions.ccsrc/actions.cc

@@ -271,24 +271,6 @@ x_root, y_root, _posqueue[0]->pos, _posqueue[0]->clientarea);

openbox->bindings()->fireButton(&data); } -void Actions::mapRequestHandler(const XMapRequestEvent &e) -{ - otk::EventHandler::mapRequestHandler(e); - // do this in Screen::manageWindow -} - -void Actions::unmapHandler(const XUnmapEvent &e) -{ - otk::EventHandler::unmapHandler(e); - // do this in Screen::unmanageWindow -} - -void Actions::destroyHandler(const XDestroyWindowEvent &e) -{ - otk::EventHandler::destroyHandler(e); - // do this in Screen::unmanageWindow -} - #ifdef XKB void Actions::xkbHandler(const XkbEvent &e) {
M src/actions.hhsrc/actions.hh

@@ -79,10 +79,6 @@ virtual void keyPressHandler(const XKeyEvent &e);

virtual void motionHandler(const XMotionEvent &e); - virtual void mapRequestHandler(const XMapRequestEvent &e); - virtual void unmapHandler(const XUnmapEvent &e); - virtual void destroyHandler(const XDestroyWindowEvent &e); - #ifdef XKB virtual void xkbHandler(const XkbEvent &e); #endif // XKB