From 9a3c7102949736628125de3077951b639491b2b4 Mon Sep 17 00:00:00 2001
From: fluxgen <fluxgen>
Date: Tue, 15 Apr 2003 12:31:53 +0000
Subject: fixed missing break

---
 src/Window.cc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/Window.cc b/src/Window.cc
index 9305fb6..e207af3 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 // DEALINGS IN THE SOFTWARE.
 
-// $Id: Window.cc,v 1.133 2003/04/15 12:18:37 fluxgen Exp $
+// $Id: Window.cc,v 1.134 2003/04/15 12:31:53 fluxgen Exp $
 
 #include "Window.hh"
 
@@ -1863,8 +1863,10 @@ void FluxboxWindow::handleEvent(XEvent &event) {
     switch (event.type) {
     case ConfigureRequest:
         configureRequestEvent(event.xconfigurerequest);
+        break;
     case MapNotify:
         mapNotifyEvent(event.xmap);
+        break;
     case MapRequest:
         mapRequestEvent(event.xmaprequest);
         break;
-- 
cgit v0.11.2