antiright-devel
[Top][All Lists]
Advanced

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

[Antiright-devel] antiright/src/arshell interface_file.c


From: Jeffrey Bedard
Subject: [Antiright-devel] antiright/src/arshell interface_file.c
Date: Sat, 02 Oct 2004 21:53:55 -0400

CVSROOT:        /cvsroot/antiright
Module name:    antiright
Branch:         
Changes by:     Jeffrey Bedard <address@hidden> 04/10/03 01:47:10

Modified files:
        src/arshell    : interface_file.c 

Log message:
        Fixed to be compatible with the current CVS version of yetanotherclib.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/antiright/antiright/src/arshell/interface_file.c.diff?tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: antiright/src/arshell/interface_file.c
diff -u antiright/src/arshell/interface_file.c:1.1 
antiright/src/arshell/interface_file.c:1.2
--- antiright/src/arshell/interface_file.c:1.1  Sat Aug 28 01:16:43 2004
+++ antiright/src/arshell/interface_file.c      Sun Oct  3 01:47:10 2004
@@ -31,7 +31,7 @@
 }
 
 int
-arshell_interface_button_cb(struct list *call_data)
+arshell_interface_button_cb(yacl_list *call_data)
 {
   Widget button;
   arshell_row_layout();
@@ -42,7 +42,7 @@
   return(0);
 }
 int
-arshell_interface_obutton_cb(struct list *call_data)
+arshell_interface_obutton_cb(yacl_list *call_data)
 {
   Widget button;
   char *command;
@@ -57,26 +57,26 @@
   return(0);
 }
 int
-arshell_interface_status_cb(struct list *call_data)
+arshell_interface_status_cb(yacl_list *call_data)
 {
   puts("status");
   antiright_create_status_bar(arshell.gui.widgets.mainwindow);
   return(0);
 }
 int
-arshell_interface_menubar_cb(struct list *call_data)
+arshell_interface_menubar_cb(yacl_list *call_data)
 {
   arshell_default_menubar_action();
   return(0);
 }
 int
-arshell_interface_label_cb(struct list *call_data)
+arshell_interface_label_cb(yacl_list *call_data)
 {
   antiright_label(arshell.gui.widgets.row, call_data->data);
   return(0);
 }
 int
-arshell_interface_field_cb(struct list *call_data)
+arshell_interface_field_cb(yacl_list *call_data)
 {
   int counter_int=0;
   char **argv=NULL;
@@ -86,7 +86,7 @@
   return(0);
 }
 int
-arshell_interface_icon_cb(struct list *call_data)
+arshell_interface_icon_cb(yacl_list *call_data)
 {
   Widget button;
   arshell_transparency_hack();
@@ -97,7 +97,7 @@
   return(0);
 }
 int
-arshell_interface_oicon_cb(struct list *call_data)
+arshell_interface_oicon_cb(yacl_list *call_data)
 {
   Widget button;
   char *command;
@@ -112,13 +112,13 @@
   return(0);
 }
 int
-arshell_interface_color_cb(struct list *call_data)
+arshell_interface_color_cb(yacl_list *call_data)
 {
   arshell_color_widget(arshell.gui.widgets.row);
   return(0);
 }
 int
-arshell_interface_work_cb(struct list *call_data)
+arshell_interface_work_cb(yacl_list *call_data)
 {
   arshell_create_text_work_area();
   return(0);
@@ -127,7 +127,7 @@
 arshell_parse_interface_file(char *filename)
 {
   /*  char *a="one", *b="two", *c="three";*/
-  struct list *grammar=(struct list *)malloc(sizeof(struct list));
+  yacl_list *grammar=(yacl_list *)malloc(sizeof(yacl_list));
   struct yaclib_parse_rule rule;
   L_INIT_PTR(grammar);
 




reply via email to

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