Enlightenment CVS committal

Author  : rbdpngn
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src


Modified Files:
        ewl_button.c ewl_button.h ewl_tree.c 


Log Message:
Update button API.

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_button.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -3 -r1.56 -r1.57
--- ewl_button.c        18 Aug 2004 03:15:20 -0000      1.56
+++ ewl_button.c        20 Aug 2004 16:48:41 -0000      1.57
@@ -64,7 +64,7 @@
  * @return Returns no value.
  * @brief Change the label of the specified button
  */
-void ewl_button_set_label(Ewl_Button * b, char *l)
+void ewl_button_label_set(Ewl_Button * b, char *l)
 {
        Ewl_Widget     *w;
 
@@ -93,7 +93,7 @@
  * @return A newly allocated copy of the label on the button.
  * @brief Retrieve the label of the specified button
  */
-char *ewl_button_get_label(Ewl_Button *b)
+char *ewl_button_label_get(Ewl_Button *b)
 {
        char *val = NULL;
 
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_button.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- ewl_button.h        3 Jan 2004 21:23:11 -0000       1.22
+++ ewl_button.h        20 Aug 2004 16:48:42 -0000      1.23
@@ -40,8 +40,8 @@
 
 Ewl_Widget     *ewl_button_new(char *l);
 int             ewl_button_init(Ewl_Button * b, char *label);
-void            ewl_button_set_label(Ewl_Button * b, char *l);
-char           *ewl_button_get_label(Ewl_Button *b);
+void            ewl_button_label_set(Ewl_Button * b, char *l);
+char           *ewl_button_label_get(Ewl_Button *b);
 
 /**
  * @}
===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/ewl/src/ewl_tree.c,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -3 -r1.55 -r1.56
--- ewl_tree.c  20 Aug 2004 01:07:01 -0000      1.55
+++ ewl_tree.c  20 Aug 2004 16:48:42 -0000      1.56
@@ -121,7 +121,7 @@
 
        button = ecore_list_next(EWL_CONTAINER(row)->children);
        for (i = 0; i < tree->ncols && button; i++) {
-               ewl_button_set_label(EWL_BUTTON(button), headers[i]);
+               ewl_button_label_set(EWL_BUTTON(button), headers[i]);
                button = ecore_list_next(EWL_CONTAINER(row)->children);
        }
 




-------------------------------------------------------
SF.Net email is sponsored by Shop4tech.com-Lowest price on Blank Media
100pk Sonic DVD-R 4x for only $29 -100pk Sonic DVD+R for only $33
Save 50% off Retail on Ink & Toner - Free Shipping and Free Gift.
http://www.shop4tech.com/z/Inkjet_Cartridges/9_108_r285
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to