piechart: Fix spelling of "magnitude".
authorBen Pfaff <blp@gnu.org>
Wed, 1 Jul 2009 23:42:44 +0000 (16:42 -0700)
committerBen Pfaff <blp@gnu.org>
Thu, 2 Jul 2009 03:46:29 +0000 (20:46 -0700)
src/language/stats/frequencies.q
src/output/charts/piechart.c
src/output/charts/piechart.h

index e44e8e216800f1dd788b4adf70160faf2b3014d3..91ae67282863ea94a9ed4ebaaef9d2c4f9ccb561 100644 (file)
@@ -1515,7 +1515,7 @@ freq_tab_to_slice_array(const struct freq_tab *frq_tab,
 
       ds_init_empty (&slices[i].label);
       var_append_value_name (var, &frq->value, &slices[i].label);
-      slices[i].magnetude = frq->count;
+      slices[i].magnitude = frq->count;
     }
 
   return slices;
index edb83ddb2e90dfd947e200abf9cb3ba7095b74a9..5ff6123b94b69e2c57401308de633c36cf9b6c7b 100644 (file)
@@ -48,7 +48,7 @@ void
 piechart_plot(const char *title, const struct slice *slices, int n_slices)
 {
   int i;
-  double total_magnetude=0;
+  double total_magnitude=0;
 
   struct chart *ch = chart_create();
 
@@ -70,14 +70,14 @@ piechart_plot(const char *title, const struct slice *slices, int n_slices)
   chart_write_title(ch, title);
 
   for (i = 0 ; i < n_slices ; ++i )
-    total_magnetude += slices[i].magnetude;
+    total_magnitude += slices[i].magnitude;
 
   for (i = 0 ; i < n_slices ; ++i )
     {
       static double angle=0.0;
 
       const double segment_angle =
-       slices[i].magnetude / total_magnetude * 2 * M_PI ;
+       slices[i].magnitude / total_magnitude * 2 * M_PI ;
 
       const double label_x = centre_x -
        radius * sin(angle + segment_angle/2.0);
index 96540401e7406f61e33259a7117e983d18e78fb9..288a44e638b8bf29a73cb521c19246182780d0f2 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2004 Free Software Foundation, Inc.
+   Copyright (C) 2004, 2009 Free Software Foundation, Inc.
 
    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
@@ -21,7 +21,7 @@
 
 struct slice {
   struct string label;
-  double magnetude;
+  double magnitude;
 };
 
 /* Draw a piechart */