]> granicus.if.org Git - graphviz/commitdiff
lib/glcomp: remove some open coded 'NULL'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 21 Mar 2022 04:33:21 +0000 (21:33 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 26 Mar 2022 05:31:13 +0000 (22:31 -0700)
lib/glcomp/glcompbutton.c
lib/glcomp/glcomppanel.c
lib/glcomp/glcompset.c
lib/glcomp/glpangofont.c

index cf359761eef7320776889e2118a9cffa021b7554..d81fbd3454e54de4f9fb825d6c57233b7c2b67b7 100644 (file)
@@ -61,7 +61,7 @@ glCompButton *glCompButtonNew(glCompObj * par, GLfloat x, GLfloat y,
     p->label->common.font->justify.HJustify = glFontHJustifyCenter;
     p->label->common.align = glAlignParent;
     /*image */
-    p->image = (glCompImage *) 0;
+    p->image = NULL;
     p->glyphPos = glButtonGlyphLeft;
     return p;
 }
index cc231e35f7c8eb96aa83c2326545a64b303668e7..df533dfec1e9495b046949c2abc7c6005b5a46f7 100644 (file)
@@ -34,9 +34,9 @@ glCompPanel *glCompPanelNew(glCompObj * parentObj, GLfloat x, GLfloat y,
     p->common.height = h;
 
     p->common.font = glNewFontFromParent((glCompObj *) p, NULL);
-    p->text = (char *) 0;
+    p->text = NULL;
     p->common.functions.draw = (glcompdrawfunc_t)glCompPanelDraw;
-    p->image = (glCompImage *) 0;
+    p->image = NULL;
     return p;
 }
 void glCompSetPanelText(glCompPanel * p, char *t)
index e3cfd21265d71ef2e6324eb6602466f5e01255a1..7cb222560b5bec6b462ff116d4800b7bb91dc3db 100644 (file)
@@ -207,7 +207,7 @@ glCompSet *glCompSetNew(int w, int h)
     s->objcnt = 0;
     s->obj = NULL;
     s->textureCount = 0;
-    s->textures = (glCompTex **) 0;
+    s->textures = NULL;
     s->common.font = glNewFontFromParent((glCompObj *) s, NULL);
     s->common.compset = (glCompSet *) s;
     s->common.functions.mouseover = (glcompmouseoverfunc_t)glCompMouseMove;
index 8eb77e102655c6d792ebeb0daf8cee418a31dd87..2da2109d9165b408a6f1a1662030bd7e14c5fac4 100644 (file)
@@ -56,7 +56,7 @@ static PangoLayout *get_pango_layout(char *markup_text,
 
     if (!pango_parse_markup
        (markup_text, -1, '\0', &attr_list, &text, NULL, NULL))
-       return (PangoLayout *) 0;
+       return NULL;
     layout = pango_layout_new(context);
     pango_layout_set_text(layout, text, -1);
     pango_layout_set_font_description(layout, desc);