JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
renamed drawtitle into drawclient
[dwm.git] / event.c
diff --git a/event.c b/event.c
index a6100e6..c9ad387 100644 (file)
--- a/event.c
+++ b/event.c
@@ -1,4 +1,4 @@
-/* (C)opyright MMVII Anselm R. Garbe <garbeam at gmail dot com>
+/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
  * See LICENSE file for license details.
  */
 #include "dwm.h"
@@ -236,7 +236,7 @@ expose(XEvent *e) {
                if(barwin == ev->window)
                        drawstatus();
                else if((c = getctitle(ev->window)))
-                       drawtitle(c);
+                       drawclient(c);
        }
 }
 
@@ -320,7 +320,7 @@ propertynotify(XEvent *e) {
                if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
                        updatetitle(c);
                        resizetitle(c);
-                       drawtitle(c);
+                       drawclient(c);
                }
        }
 }