[BACK]Return to ox_plot_xevent.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / plot

Diff for /OpenXM_contrib2/asir2000/plot/ox_plot_xevent.c between version 1.25 and 1.26

version 1.25, 2005/05/18 03:27:00 version 1.26, 2005/07/03 13:11:28
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot_xevent.c,v 1.24 2004/03/01 05:48:24 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/plot/ox_plot_xevent.c,v 1.25 2005/05/18 03:27:00 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 56 
Line 56 
 #include <X11/Xaw/Paned.h>  #include <X11/Xaw/Paned.h>
   
 static void Quit();  static void Quit();
   static void print_canvas(Widget w, struct canvas *can, XtPointer calldata);
   static void output_to_printer(Widget w, struct canvas *can, XtPointer calldata);
   static void print_canvas_to_file(Widget w, struct canvas *can, XtPointer calldata);
   static void printing_method(Widget w, struct canvas *can, XtPointer calldata);
   
 static Atom wm_delete_window;  static Atom wm_delete_window;
   
Line 554  struct canvas *can;
Line 558  struct canvas *can;
         int i,width,height;          int i,width,height;
         Arg arg[6];          Arg arg[6];
         char buf[BUFSIZ];          char buf[BUFSIZ];
         static void print_canvas();  
   
         width = can->width; height = can->height;          width = can->width; height = can->height;
   
Line 961  static void print_canvas(w,can,calldata)
Line 964  static void print_canvas(w,can,calldata)
   Widget entry;    Widget entry;
   int i;    int i;
   Arg arg[1];    Arg arg[1];
   static void output_to_printer();  
   static void print_canvas_to_file();  
   static void printing_method();  
   
   W = w;    W = w;
   Can = can;    Can = can;

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.26

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>