]> granicus.if.org Git - graphviz/commitdiff
squash unused variable warnings in glcompmouse.c
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Sep 2020 23:46:01 +0000 (16:46 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Sep 2020 02:24:16 +0000 (19:24 -0700)
lib/glcomp/glcompmouse.c

index 866429a45a265dc56c01baf369be399d5d4d22ca..7266fc73461136ce15ff675c9f988c4970584ed2 100644 (file)
@@ -45,39 +45,60 @@ void glCompMouseInit(glCompMouse * m)
 extern void glCompClick(glCompObj * o, GLfloat x, GLfloat y,
                        glMouseButtonType t)
 {
-
+    (void)o;
+    (void)x;
+    (void)y;
+    (void)t;
 }
 extern void glCompDoubleClick(glCompObj * obj, GLfloat x, GLfloat y,
                              glMouseButtonType t)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
+    (void)t;
 }
 
 extern void glCompMouseDown(glCompObj * obj, GLfloat x, GLfloat y,
                            glMouseButtonType t)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
+    (void)t;
 }
 
 extern void glCompMouseIn(glCompObj * obj, GLfloat x, GLfloat y)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
 }
 extern void glCompMouseOut(glCompObj * obj, GLfloat x, GLfloat y)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
 }
 extern void glCompMouseOver(glCompObj * obj, GLfloat x, GLfloat y)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
 }
 extern void glCompMouseUp(glCompObj * obj, GLfloat x, GLfloat y,
                          glMouseButtonType t)
 {
-
+    (void)obj;
+    (void)x;
+    (void)y;
+    (void)t;
 }
 extern void glCompMouseDrag(glCompObj * obj, GLfloat dx, GLfloat dy,
                            glMouseButtonType t)
 {
-
+    (void)obj;
+    (void)dx;
+    (void)dy;
+    (void)t;
 }