aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2011-12-11 00:57:37 +0200
committerIvan Kanakarakis <ivan.kanak@gmail.com>2011-12-11 00:57:37 +0200
commita30c39def196bc42056fb53eb6403316250d1e7b (patch)
treeb1275eefd1f288974e415f9662e84df8d594cbf0
parent7e907440f79248f76344106ce1bc5b6058f121db (diff)
remove configurenotify() function
-rw-r--r--dminiwm.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/dminiwm.c b/dminiwm.c
index 0c45cb3..7d34a04 100644
--- a/dminiwm.c
+++ b/dminiwm.c
@@ -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;