From: Matthew Fernandez Date: Wed, 19 May 2021 03:00:14 +0000 (-0700) Subject: remove unused glCompSetText X-Git-Tag: 2.47.3~23^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9bd2cbfd29b3c635364e05a0552843ad79abcd2;p=graphviz remove unused glCompSetText --- diff --git a/lib/glcomp/glcompbutton.c b/lib/glcomp/glcompbutton.c index ffa20ee86..cf359761e 100644 --- a/lib/glcomp/glcompbutton.c +++ b/lib/glcomp/glcompbutton.c @@ -221,10 +221,3 @@ void glCompButtonMouseUp(glCompObj * obj, GLfloat x, GLfloat y, if (((glCompButton *) obj)->common.callbacks.mouseup) ((glCompButton *) obj)->common.callbacks.mouseup(obj, x, y, t); } - - - - -void glCompButtonSetText(glCompButton * p, char *str) -{ -} diff --git a/lib/glcomp/glcompbutton.h b/lib/glcomp/glcompbutton.h index 9f585a961..15ba3ab7b 100644 --- a/lib/glcomp/glcompbutton.h +++ b/lib/glcomp/glcompbutton.h @@ -21,7 +21,6 @@ extern "C" { char *caption); extern int glCompSetRemoveButton(glCompSet * s, glCompButton * p); extern void glCompButtonDraw(glCompButton * p); - extern void glCompButtonSetText(glCompButton * p, char *str); extern int glCompButtonAddPngGlyph(glCompButton * b, char *fileName); extern void glCompButtonClick(glCompObj * o, GLfloat x, GLfloat y, glMouseButtonType t);