]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove useless 'cb_mouseover' callback
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 29 Sep 2021 00:39:06 +0000 (17:39 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 2 Oct 2021 00:00:18 +0000 (17:00 -0700)
cmd/smyrna/glutrender.c

index 388284517b60cd84cf0891e8c3b625d6b5e8eabb..d186a9521695c59ee9bf3e6b88d133159e9ba474 100644 (file)
@@ -122,9 +122,6 @@ static void cb_mouseclick(int button, int state, int x, int y)
     cb_display();
 
 }
-void cb_mouseover(int x,int y)/*no mouse click only mouse pointer moving on context*/
-{
-}
 
 // mouse moving with a button clicked (dragging)
 static void cb_drag(int X, int Y)
@@ -266,7 +263,7 @@ int cb_glutinit(int x,int y,int w,int h, int bits,int s_rate,int fullscreen,int*
     glutKeyboardUpFunc( cb_keyboard_up);
     glutMouseFunc(cb_mouseclick);
     glutMotionFunc(cb_drag);
-    glutPassiveMotionFunc(cb_mouseover);
+    glutPassiveMotionFunc(NULL);
     glutVisibilityFunc(NULL);
     glutEntryFunc(NULL);
     glutSpecialFunc(cb_special_key);