From: Matthew Fernandez Date: Wed, 2 Jun 2021 03:16:24 +0000 (-0700) Subject: remove commented out code in glCompLabelNew X-Git-Tag: 2.47.3~12^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=15e992cabd541763b9a66c8b7454971a18305ad9;p=graphviz remove commented out code in glCompLabelNew --- diff --git a/lib/glcomp/glcomplabel.c b/lib/glcomp/glcomplabel.c index 326900a2c..ac956b35b 100644 --- a/lib/glcomp/glcomplabel.c +++ b/lib/glcomp/glcomplabel.c @@ -18,12 +18,10 @@ glCompLabel *glCompLabelNew(glCompObj * par, GLfloat x, GLfloat y, char *text) { glCompLabel *p; -// glCompCommon* parent=&par->common; p = NEW(glCompLabel); glCompInitCommon((glCompObj *) p, par, x, y); p->objType = glLabelObj; p->transparent=1; - //typedef enum {glPanelObj,glbuttonObj,glLabelObj,glImageObj}glObjType; p->text = strdup(text); p->common.font = glNewFontFromParent ((glCompObj*)p, text);