src/ui/gui/psppire-dialog-action-runs.c (generate_syntax): Rename 'text' to 'str'
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 27 Mar 2021 18:08:26 +0000 (19:08 +0100)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 27 Mar 2021 18:08:26 +0000 (19:08 +0100)
src/ui/gui/psppire-dialog-action-runs.c

index 087618e599afc6d3f28f7383c4d1146f56ed6c25..3a073e227b05bd215f723aeb834c5e3fe322b8e0 100644 (file)
@@ -54,7 +54,7 @@ static char *
 generate_syntax (const PsppireDialogAction *act)
 {
   PsppireDialogActionRuns *rd = PSPPIRE_DIALOG_ACTION_RUNS (act);
-  gchar *text;
+  gchar *str;
 
   GString *string = g_string_new ("NPAR TEST");
 
@@ -75,11 +75,11 @@ generate_syntax (const PsppireDialogAction *act)
 
   g_string_append (string, ".\n");
 
-  text = string->str;
+  str = string->str;
 
   g_string_free (string, FALSE);
 
-  return text;
+  return str;
 }