fixed missing break
This commit is contained in:
parent
89fddca1d7
commit
9a3c710294
1 changed files with 3 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// 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"
|
#include "Window.hh"
|
||||||
|
|
||||||
|
@ -1863,8 +1863,10 @@ void FluxboxWindow::handleEvent(XEvent &event) {
|
||||||
switch (event.type) {
|
switch (event.type) {
|
||||||
case ConfigureRequest:
|
case ConfigureRequest:
|
||||||
configureRequestEvent(event.xconfigurerequest);
|
configureRequestEvent(event.xconfigurerequest);
|
||||||
|
break;
|
||||||
case MapNotify:
|
case MapNotify:
|
||||||
mapNotifyEvent(event.xmap);
|
mapNotifyEvent(event.xmap);
|
||||||
|
break;
|
||||||
case MapRequest:
|
case MapRequest:
|
||||||
mapRequestEvent(event.xmaprequest);
|
mapRequestEvent(event.xmaprequest);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue