From 4a14a586e2f457d38e9fede1a494478105a8acfd Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 13 Nov 2005 14:54:09 +0000 Subject: (svn r3173) Use the trinary operator and switch to improve readability Also align short cases nicely --- window.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index c37e573f8..1830875f3 100644 --- a/window.c +++ b/window.c @@ -1462,10 +1462,10 @@ static void MouseLoop(int click, int mousewheel) if (mousewheel) DispatchMouseWheelEvent(w, GetWidgetFromPos(w, x - w->left, y - w->top), mousewheel); - if (click == 1) - DispatchLeftClickEvent(w, x - w->left, y - w->top); - else if (click == 2) - DispatchRightClickEvent(w, x - w->left, y - w->top); + switch (click) { + case 1: DispatchLeftClickEvent(w, x - w->left, y - w->top); break; + case 2: DispatchRightClickEvent(w, x - w->left, y - w->top); break; + } } } -- cgit v1.2.3-54-g00ecf