diff options
author | fluxgen <fluxgen> | 2003-04-15 12:31:53 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-04-15 12:31:53 (GMT) |
commit | 9a3c7102949736628125de3077951b639491b2b4 (patch) | |
tree | c482d24be7f86b580b117b823d77ddf839b77d12 | |
parent | 89fddca1d7a2809278f9307367e7f6b600456dc1 (diff) | |
download | fluxbox_pavel-9a3c7102949736628125de3077951b639491b2b4.zip fluxbox_pavel-9a3c7102949736628125de3077951b639491b2b4.tar.bz2 |
fixed missing break
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 3 insertions, 1 deletions
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 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.133 2003/04/15 12:18:37 fluxgen Exp $ | 25 | // $Id: Window.cc,v 1.134 2003/04/15 12:31:53 fluxgen Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -1863,8 +1863,10 @@ void FluxboxWindow::handleEvent(XEvent &event) { | |||
1863 | switch (event.type) { | 1863 | switch (event.type) { |
1864 | case ConfigureRequest: | 1864 | case ConfigureRequest: |
1865 | configureRequestEvent(event.xconfigurerequest); | 1865 | configureRequestEvent(event.xconfigurerequest); |
1866 | break; | ||
1866 | case MapNotify: | 1867 | case MapNotify: |
1867 | mapNotifyEvent(event.xmap); | 1868 | mapNotifyEvent(event.xmap); |
1869 | break; | ||
1868 | case MapRequest: | 1870 | case MapRequest: |
1869 | mapRequestEvent(event.xmaprequest); | 1871 | mapRequestEvent(event.xmaprequest); |
1870 | break; | 1872 | break; |