]> granicus.if.org Git - graphviz/commitdiff
remove unused glCompLabelMouseOut
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 2 Jun 2021 03:12:49 +0000 (20:12 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 5 Jun 2021 17:03:35 +0000 (10:03 -0700)
lib/glcomp/glcomplabel.c
lib/glcomp/glcomplabel.h

index b7efaf2b9eeece225a2208268e887c72699d83e0..192d57f3e1f3c9f68b4da38663710b84e14e0121 100644 (file)
@@ -86,13 +86,6 @@ void glCompLabelSetFontName(glCompLabel * p, char* fontName)
     update_font(p,p->text,fontName,temp->size);
 }
 
-void glCompLabelMouseOut(glCompObj * obj, GLfloat x, GLfloat y)
-{
-    /*Put your internal code here */
-    if (((glCompLabel *) obj)->common.callbacks.mouseout)
-       ((glCompLabel *) obj)->common.callbacks.mouseout(obj, x, y);
-}
-
 void glCompLabelMouseOver(glCompObj * obj, GLfloat x, GLfloat y)
 {
     /*Put your internal code here */
index 914d6552062a0c97e72eeef1c86155d883cc1fbb..21eacb9d1b87b3dd05a4824d3ac77762c4c498f0 100644 (file)
@@ -21,7 +21,6 @@ extern "C" {
 
 /*events*/
     extern int glCompLabelDraw(glCompLabel * p);
-    extern void glCompLabelMouseOut(glCompObj * obj, GLfloat x, GLfloat y);
     extern void glCompLabelMouseOver(glCompObj * obj, GLfloat x,
                                     GLfloat y);
     extern void glCompLabelMouseUp(glCompObj * obj, GLfloat x, GLfloat y,