diff options
| author | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2011-12-11 00:57:37 +0200 |
|---|---|---|
| committer | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2011-12-11 00:57:37 +0200 |
| commit | a30c39def196bc42056fb53eb6403316250d1e7b (patch) | |
| tree | b1275eefd1f288974e415f9662e84df8d594cbf0 | |
| parent | 7e907440f79248f76344106ce1bc5b6058f121db (diff) | |
remove configurenotify() function
| -rw-r--r-- | dminiwm.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -88,7 +88,6 @@ static void add_window(Window w); static void buttonpressed(XEvent *e); static void change_desktop(const Arg arg); static void client_to_desktop(const Arg arg); -static void configurenotify(XEvent *e); static void configurerequest(XEvent *e); static void destroynotify(XEvent *e); static void enternotify(XEvent *e); @@ -154,7 +153,6 @@ static void (*events[LASTEvent])(XEvent *e) = { [EnterNotify] = enternotify, [ButtonPress] = buttonpressed, [DestroyNotify] = destroynotify, - [ConfigureNotify] = configurenotify, [ConfigureRequest] = configurerequest }; @@ -529,10 +527,6 @@ void keypress(XEvent *e) { } } -void configurenotify(XEvent *e) { - // Do nothing for the moment -} - /* ********************** Signal Management ************************** */ void configurerequest(XEvent *e) { XConfigureRequestEvent *ev = &e->xconfigurerequest; |
