gui: Prefer NULL to 0 for initializing pointers.
authorBen Pfaff <blp@cs.stanford.edu>
Wed, 8 Sep 2010 04:51:03 +0000 (21:51 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Tue, 3 May 2011 14:52:49 +0000 (07:52 -0700)
Using NULL instead of 0 is better modern C style.

src/ui/gui/helper.c
src/ui/gui/val-labs-dialog.c
src/ui/gui/var-display.c
src/ui/gui/variable-info-dialog.c

index 36165c7c20078e839fc4bf83afab2d7dcfa4f25e..75954fbdabbebbaae424d32b8e363b0f97aba4da 100644 (file)
@@ -52,7 +52,7 @@
 gchar *
 value_to_text (union value v, const PsppireDict *dict, struct fmt_spec format)
 {
-  gchar *s = 0;
+  gchar *s = NULL;
 
   s = data_out (&v, dict_get_encoding (dict->dict),  &format);
   g_strchug (s);
index 605be36f7d608b991fcc0aeb5beef89e35f3e5f2..950a59e6b4ef860ee44ce1240920bda3e4d32c85 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2005, 2009, 2011  Free Software Foundation
+   Copyright (C) 2005, 2009, 2010, 2011  Free Software Foundation
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -192,7 +192,7 @@ val_labs_ok (GtkWidget *w, gpointer data)
 
   val_labs_destroy (dialog->labs);
 
-  dialog->labs = 0;
+  dialog->labs = NULL;
 
   gtk_widget_hide (dialog->window);
 
@@ -206,7 +206,7 @@ val_labs_cancel (struct val_labs_dialog *dialog)
 {
   val_labs_destroy (dialog->labs);
 
-  dialog->labs = 0;
+  dialog->labs = NULL;
 
   gtk_widget_hide (dialog->window);
 }
@@ -461,7 +461,7 @@ val_labs_dialog_create (GtkWindow *toplevel, PsppireVarStore *var_store)
   g_signal_connect (dialog->add_button, "clicked",
                   G_CALLBACK (on_add), dialog);
 
-  dialog->labs = 0;
+  dialog->labs = NULL;
 
   g_object_unref (xml);
 
index 26de981fef7a06a16a8891dc59318b108ba8490f..5f85af2e736cc78286891845f47dc9c1e853c226 100644 (file)
@@ -69,7 +69,7 @@ missing_values_to_string (const PsppireDict *dict, const struct variable *pv, GE
 
          if ( mv_has_value (miss))
            {
-             gchar *ss = 0;
+             gchar *ss = NULL;
 
              ss = value_to_text (*mv_get_value (miss, 0), dict, *fmt);
 
index 37f501a41381d2a987af1b270e7eac6c9718ac76..3692a0d24834b5bdb94bb0d8311d9e093fd38130 100644 (file)
@@ -55,7 +55,7 @@ label_to_string (const struct variable *var)
 static void
 populate_text (PsppireDictView *treeview, gpointer data)
 {
-  gchar *text = 0;
+  gchar *text = NULL;
   GString *gstring;
   PsppireDict *dict;