]> granicus.if.org Git - graphviz/commitdiff
lefty: use C99 bool constants to set 'Gnocallbacks'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 16 Jan 2022 19:50:14 +0000 (11:50 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 20 Jan 2022 02:15:00 +0000 (18:15 -0800)
cmd/lefty/common.c
cmd/lefty/g.c
cmd/lefty/ws/mswin32/gcommon.c
cmd/lefty/ws/mswin32/gtext.c

index 8a89b4b1943bacd2ee3e8edf4ef5e375eae25b38..da03f2bc201d2a292c21c79a59c3c04856a23c23 100644 (file)
@@ -354,11 +354,11 @@ void warning (char *file, int line, char *func, char *fmt, ...) {
         return;
 
     va_start(args, fmt);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     fprintf (stderr, "warning: (file %s, line %d, func %s) ", file, line, func);
     vfprintf (stderr, fmt, args);
     fprintf (stderr, "\n");
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #else
     char buf[256];
@@ -368,9 +368,9 @@ void warning (char *file, int line, char *func, char *fmt, ...) {
 
     va_start(args, fmt);
     vsprintf (buf, fmt, args);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     MessageBox ((HWND) NULL, buf, "Lefty Warning", MB_APPLMODAL);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #endif
 }
@@ -381,21 +381,21 @@ void panic1 (char *file, int line, char *func, char *fmt, ...) {
 
 #ifndef FEATURE_MS
     va_start(args, fmt);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     fprintf (stderr, "panic: (file %s, line %d, func %s) ", file, line, func);
     vfprintf (stderr, fmt, args);
     fprintf (stderr, "\n");
     fflush (stdout);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #else
     char buf[256];
 
     va_start(args, fmt);
     vsprintf (buf, fmt, args);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     MessageBox ((HWND) NULL, buf, "Lefty PANIC", MB_APPLMODAL);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #endif
     abort ();
@@ -409,22 +409,22 @@ void panic2 (char *file, int line, char *func, char *fmt, ...) {
 
 #ifndef FEATURE_MS
     va_start(args, fmt);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     fprintf (stderr, "panic: (file %s, line %d, func %s) ", file, line, func);
     vfprintf (stderr, fmt, args);
     fprintf (stderr, "\n");
     perror ("");
     fflush (stdout);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #else
     char buf[256];
 
     va_start(args, fmt);
     vsprintf (buf, fmt, args);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     MessageBox ((HWND) NULL, buf, "Lefty PANIC", MB_APPLMODAL);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #endif
     abort ();
@@ -442,9 +442,9 @@ int gprintf (const char *fmt, ...) {
     if (buf[l - 1] == '\n')
         buf[l - 1] = 0;
     if (buf[0]) {
-        Gnocallbacks = TRUE;
+        Gnocallbacks = true;
         MessageBox ((HWND) NULL, buf, "Lefty printf", MB_APPLMODAL);
-        Gnocallbacks = FALSE;
+        Gnocallbacks = false;
     }
     va_end(args);
 }
index 85986b92661611bf0193a39c32a0f452c69df989..d029dd044b4cafd8d824d379278ce42d0bad6eac 100644 (file)
@@ -14,6 +14,7 @@
 #include "g.h"
 #include "gcommon.h"
 #include "mem.h"
+#include <stdbool.h>
 #include <string.h>
 
 Gwidget_t *Gwidgets;
@@ -847,9 +848,9 @@ void Gerr (char *file, int line, int errnum, ...) {
 
     va_start(args, errnum);
     vsprintf (buf, errmsg[errnum], args);
-    Gnocallbacks = TRUE;
+    Gnocallbacks = true;
     MessageBox ((HWND) NULL, buf, "Lefty Warning", MB_APPLMODAL);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     va_end(args);
 #endif
 #endif
index 4881a75ce188926294d0bf7f05413f332738b5a1..bfbde0845797cce9e7d97ce6c398c0a480db7b20 100644 (file)
@@ -10,6 +10,7 @@
 
 /* Lefteris Koutsofios - AT&T Labs Research */
 
+#include <stdbool.h>
 #include "common.h"
 #include "g.h"
 #include "gcommon.h"
@@ -148,7 +149,7 @@ int Ginitgraphics (void) {
     else
         Gfontp[0].font = NULL;
     ReleaseDC ((HWND) NULL, hdc);
-    Gnocallbacks = FALSE;
+    Gnocallbacks = false;
     return 0;
 }
 
@@ -614,18 +615,18 @@ static void handleresize (Gwidget_t *widget) {
     case G_VIEWWIDGET:
         Gadjustwrect (parent, &ps1);
         if (ps1.x != ps2.x || ps1.y != ps2.y) {
-            Gnocallbacks = TRUE;
+            Gnocallbacks = true;
             SetWindowPos (widget->w, (HWND) NULL, 0, 0, ps1.x, ps1.y, wflags1);
-            Gnocallbacks = FALSE;
+            Gnocallbacks = false;
         }
         break;
     case G_ARRAYWIDGET:
-        Gnocallbacks = TRUE;
+        Gnocallbacks = true;
         Gawresize (parent);
-        Gnocallbacks = FALSE;
+        Gnocallbacks = false;
         break;
     case G_SCROLLWIDGET:
-        Gnocallbacks = TRUE;
+        Gnocallbacks = true;
         for (i = 0; i  < 2; i++) {
             Gadjustwrect (parent, &ps1);
             if (ps1.x > ps2.x || ps1.y > ps2.y)
@@ -649,7 +650,7 @@ static void handleresize (Gwidget_t *widget) {
             SetWindowPos (widget->w, (HWND) NULL, -po.x, -po.y, 0, 0, wflags2);
             ps2 = ps1;
         }
-        Gnocallbacks = FALSE;
+        Gnocallbacks = false;
         break;
     }
 
index aee54b6922a0c79c05d9f79bccea0d857bdf27de..7a96b329419c5f8cfeb2623cc2b0bd9f3311ddc9 100644 (file)
@@ -10,6 +10,7 @@
 
 /* Lefteris Koutsofios - AT&T Labs Research */
 
+#include <stdbool.h>
 #include "common.h"
 #include "g.h"
 #include "gcommon.h"
@@ -108,21 +109,21 @@ int GTsetwidgetattr (Gwidget_t *widget, int attrn, Gwattr_t *attrp) {
             Gerr (POS, G_ERRCANNOTSETATTR2, "borderwidth");
             return -1;
         case G_ATTRTEXT:
-            Gnocallbacks = TRUE;
+            Gnocallbacks = true;
             SendMessage (widget->w, WM_SETTEXT, 0, "");
             SendMessage (widget->w, EM_SETSEL, -1, 32760);
             SendMessage (widget->w, EM_REPLACESEL, 0, (LPARAM) attrp[ai].u.t);
             SendMessage (widget->w, EM_SETSEL, -1, 32760);
-            Gnocallbacks = FALSE;
+            Gnocallbacks = false;
             break;
         case G_ATTRAPPENDTEXT:
-            Gnocallbacks = TRUE;
+            Gnocallbacks = true;
             SendMessage (widget->w, EM_SETSEL, -1, 32760);
             SendMessage (widget->w, EM_REPLACESEL, 0, (LPARAM) attrp[ai].u.t);
             SendMessage (widget->w, EM_SETSEL, -1, 32760);
             SendMessage (widget->w, EM_REPLACESEL, 0, (LPARAM) "\r\n");
             SendMessage (widget->w, EM_SETSEL, -1, 32760);
-            Gnocallbacks = FALSE;
+            Gnocallbacks = false;
             break;
         case G_ATTRMODE:
             if (