dtpad: remove register keyword
authorJon Trulson <jon@radscan.com>
Wed, 27 Jun 2018 23:30:51 +0000 (17:30 -0600)
committerJon Trulson <jon@radscan.com>
Thu, 28 Jun 2018 04:20:34 +0000 (22:20 -0600)
cde/programs/dtpad/dtpad.c
cde/programs/dtpad/fileDlg.c
cde/programs/dtpad/main.c

index 85b825eebb876dde77c5b6c72117dd50738c1fe4..ab16cb2b8c237c462524fba14e2b62315b074db2 100644 (file)
@@ -965,7 +965,7 @@ CreateEditorWidget(
 {
     Widget parent = pPad->mainWindow;
     Arg al[10];                /* arg list */
-    register int ac;   /* arg count */
+    int ac;    /* arg count */
     Pixel background, foreground, top_shadow, bottom_shadow, selectColor;
     Colormap colormap;
     XmString dialogTitleStr = XmStringCreateLocalized(DialogTitle(pPad));
@@ -1017,7 +1017,7 @@ FindOrCreatePad(
     Boolean foundPad = False;
     Editor *pPad;
     Arg al[10];
-    register int ac;
+    int ac;
 
     /* -----> Reuse unused entries (corresponding to closed editor windows)
      *        before creating new ones. */
index 9ae1225416b0a7407661230b635d9c5f9a8cc213..3ee3619aae0a6c7a36e2de2de075c16b6e356c26 100644 (file)
@@ -182,7 +182,7 @@ SetSaveAsDirAndFile(Editor *pPad)
     int firstSelect = -1, lastSelect = -1;
     Widget textField;
     Arg args[5];
-    register int n;
+    int n;
     XmString dirString;
     dirbuf[0] = (char) '\0';
 
@@ -263,7 +263,7 @@ CreateNewLineToggles(
        ToggleWidgets *pToggleWidgets)
 {
     Arg args[20];
-    register int n;
+    int n;
     XmString label_string;
 
     /* -----> Create Radio Box */
@@ -321,7 +321,7 @@ void
 CreateSaveAsDialog(Editor *pPad)
 {
     Arg args[20];
-    register int n;
+    int n;
     XmString label_string;
     char buf[256];
     SaveAs *pSaveAs = &pPad->fileStuff.fileWidgets.saveAs;
@@ -563,7 +563,7 @@ CreateFileSelectionDialog(
         Editor *pPad )
 {
     Arg al[10];             /* arg list */
-    register int ac;        /* arg count */
+    int ac;        /* arg count */
     XmString tmpStr;
     Select *pSelect = &pPad->fileStuff.fileWidgets.select;
 
@@ -618,7 +618,7 @@ CreateSaveWarning(
         Editor *pPad )
 {
     Arg al[10];                        /* arg list */
-    register int ac;           /* arg count */
+    int ac;            /* arg count */
     char buf[256];
     Widget w, kid[5];
     Pixel foreground, background;
@@ -901,7 +901,7 @@ AskIfSave(
         Editor *pPad)
 {
     Arg al[10];             /* arg list */
-    register int ac;        /* arg count */
+    int ac;        /* arg count */
     char *tmp = NULL;
     XmString tmpStr;
     Select *pSelect = &pPad->fileStuff.fileWidgets.select;
index ca0619a1540f8ca820a77ebbd407b4d0f2f2b5c7..83679c08e448046a5d84f137ee028840d28ad801 100644 (file)
@@ -512,7 +512,7 @@ CreateFirstPad(
     char **argv_l, **c_argv_l;
     Editor *pPad;
     Arg al[10];
-    register int ac;
+    int ac;
     Widget foo;
     int i;
     /* Added for the argument fix*/
@@ -1007,7 +1007,7 @@ RealizeNewPad(
         Editor *pPad)
 {
     Arg al[5];                 /* arg list */
-    register int ac;           /* arg count */
+    int ac;            /* arg count */
 
     /* Create the title */
     pPad->dialogTitle = DialogTitle(pPad);
@@ -1232,7 +1232,7 @@ GetAdjustedResizeHints(
         XSizeHints *pHints)
 {
     Arg al[2];                 /* arg list */
-    register int ac;           /* arg count */
+    int ac;            /* arg count */
     Dimension MBheight;
 
     /* get Dt Editor widget size hints */
@@ -1357,7 +1357,7 @@ SetWindowSize(
         Editor *pPad)
 {
     Arg al[10];                        /* arg list */
-    register int ac;           /* arg count */
+    int ac;            /* arg count */
     XSizeHints  size_hints;
     XWMHints   *wmhints;
     long supplied_return;