From: Matthew Fernandez Date: Sun, 6 Jun 2021 00:00:42 +0000 (-0700) Subject: remove unused glCompImageMouseOut X-Git-Tag: 2.47.3~7^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2bdfc542d74ea8308dd47406435747c9e702890d;p=graphviz remove unused glCompImageMouseOut --- diff --git a/lib/glcomp/glcompimage.c b/lib/glcomp/glcompimage.c index 361c9fffb..6fc517d8e 100644 --- a/lib/glcomp/glcompimage.c +++ b/lib/glcomp/glcompimage.c @@ -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 */ diff --git a/lib/glcomp/glcompimage.h b/lib/glcomp/glcompimage.h index 9643f8f6a..3f6a7b80b 100644 --- a/lib/glcomp/glcompimage.h +++ b/lib/glcomp/glcompimage.h @@ -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,