]> granicus.if.org Git - graphviz/commitdiff
remove unused glCompLabelMouseIn
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 2 Jun 2021 03:12:18 +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 dedf986b3f7ae88fab710eba5e421c2873205f55..b7efaf2b9eeece225a2208268e887c72699d83e0 100644 (file)
@@ -86,13 +86,6 @@ void glCompLabelSetFontName(glCompLabel * p, char* fontName)
     update_font(p,p->text,fontName,temp->size);
 }
 
-void glCompLabelMouseIn(glCompObj * obj, GLfloat x, GLfloat y)
-{
-    /*Put your internal code here */
-    if (((glCompLabel *) obj)->common.callbacks.mousein)
-       ((glCompLabel *) obj)->common.callbacks.mousein(obj, x, y);
-}
-
 void glCompLabelMouseOut(glCompObj * obj, GLfloat x, GLfloat y)
 {
     /*Put your internal code here */
index 47c7fbd5e6294779a15fa31f3a1f5f2cd9eefca4..914d6552062a0c97e72eeef1c86155d883cc1fbb 100644 (file)
@@ -21,7 +21,6 @@ extern "C" {
 
 /*events*/
     extern int glCompLabelDraw(glCompLabel * p);
-    extern void glCompLabelMouseIn(glCompObj * obj, GLfloat x, GLfloat y);
     extern void glCompLabelMouseOut(glCompObj * obj, GLfloat x, GLfloat y);
     extern void glCompLabelMouseOver(glCompObj * obj, GLfloat x,
                                     GLfloat y);