Ecore/Xlib: Remove unused variable.
authordevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 21 Mar 2011 14:43:21 +0000 (14:43 +0000)
committerdevilhorns <devilhorns@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 21 Mar 2011 14:43:21 +0000 (14:43 +0000)
NB: _ecore_x_mouse_up_count appears to not be used. It was used in one
code block only and appears to serve no real purpose. Both variable
and code block are now commented out without any ill effects.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@57933 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/ecore_x/xlib/ecore_x_events.c

index c232d95..f134ef6 100644 (file)
@@ -28,7 +28,7 @@ static Window _ecore_x_mouse_down_last_event_win = 0;
 static Window _ecore_x_mouse_down_last_last_event_win = 0;
 static Time _ecore_x_mouse_down_last_time = 0;
 static Time _ecore_x_mouse_down_last_last_time = 0;
-static int _ecore_x_mouse_up_count = 0;
+// static int _ecore_x_mouse_up_count = 0;
 static int _ecore_x_mouse_down_did_double = 0;
 static int _ecore_x_mouse_down_did_triple = 0;
 static int _ecore_x_last_event_mouse_move = 0;
@@ -439,11 +439,16 @@ _ecore_mouse_button(int          event,
           }
               
      }
-   
+
+   /* NB: Block commented out as _ecore_x_mouse_up_count appears to have 
+    * no use. The variable is also commented out above. This code block is 
+    * the only place that this variable is used, and appears to serve no 
+    * purpose. - dh
    if (event == ECORE_EVENT_MOUSE_BUTTON_DOWN
        && !e->double_click
        && !e->triple_click)
       _ecore_x_mouse_up_count = 0;
+    */
 
    e->multi.device = dev;
    e->multi.radius = (radx + rady) / 2;