]> granicus.if.org Git - graphviz/commitdiff
remove unused glCompImageMouseOut
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 6 Jun 2021 00:00:42 +0000 (17:00 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 9 Jun 2021 03:13:25 +0000 (20:13 -0700)
lib/glcomp/glcompimage.c
lib/glcomp/glcompimage.h

index 361c9fffb0b7a13b5fd46102b6420e0dae2488bb..6fc517d8e3437cb167f1faebe7f09a08b5368d0a 100644 (file)
@@ -147,13 +147,6 @@ void glCompImageDraw(void *obj)
 
 }
 
-void glCompImageMouseOut(glCompObj * obj, GLfloat x, GLfloat y)
-{
-    /*Put your internal code here */
-    if (((glCompImage *) obj)->common.callbacks.mouseout)
-       ((glCompImage *) obj)->common.callbacks.mouseout(obj, x, y);
-}
-
 void glCompImageMouseOver(glCompObj * obj, GLfloat x, GLfloat y)
 {
     /*Put your internal code here */
index 9643f8f6ac190bf8c87cc274e81bfd955679a818..3f6a7b80bd00fab591cdd3ef6e57459d836bbd87 100644 (file)
@@ -25,7 +25,6 @@ extern "C" {
                               int width, int height,int is2D);
     extern int glCompImageLoadPng(glCompImage * i, char *pngFile,int is2D);
     extern void glCompImageDraw(void *obj);
-    extern void glCompImageMouseOut(glCompObj * obj, GLfloat x, GLfloat y);
     extern void glCompImageMouseOver(glCompObj * obj, GLfloat x,
                                     GLfloat y);
     extern void glCompImageMouseUp(glCompObj * obj, GLfloat x, GLfloat y,