pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/ascii.c


From: John Darrington
Subject: [Pspp-cvs] Changes to pspp/src/ascii.c
Date: Thu, 13 Jan 2005 23:05:49 -0500

Index: pspp/src/ascii.c
diff -u pspp/src/ascii.c:1.12 pspp/src/ascii.c:1.13
--- pspp/src/ascii.c:1.12       Fri Nov 19 06:06:21 2004
+++ pspp/src/ascii.c    Fri Jan 14 04:05:47 2005
@@ -1631,6 +1631,28 @@
   return 1;
 }
 
+
+
+void ascii_chart_initialise(struct outp_class *c UNUSED, 
+                           struct chart *ch UNUSED);
+
+void ascii_chart_finalise(struct outp_class *c UNUSED, 
+                         struct chart *ch UNUSED);
+
+
+void
+ascii_chart_initialise(struct outp_class *c UNUSED, struct chart *ch )
+{
+  msg(MW, _("Charts are unsupported with ascii drivers."));
+  ch->lp = 0;
+}
+
+void 
+ascii_chart_finalise(struct outp_class *c UNUSED, struct chart *ch UNUSED)
+{
+  
+}
+
 struct outp_class ascii_class =
 {
   "ascii",
@@ -1669,4 +1691,7 @@
   ascii_text_get_size,
   ascii_text_metrics,
   ascii_text_draw,
+
+  ascii_chart_initialise,
+  ascii_chart_finalise
 };




reply via email to

[Prev in Thread] Current Thread [Next in Thread]