Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : libs/etk

Dir     : e17/libs/etk/src/engines/ecore_evas


Modified Files:
        ecore_evas.c 


Log Message:
Be consistent when naming has_alpha and its signal.

===================================================================
RCS file: /cvs/e/e17/libs/etk/src/engines/ecore_evas/ecore_evas.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -3 -r1.19 -r1.20
--- ecore_evas.c        22 Mar 2007 23:31:40 -0000      1.19
+++ ecore_evas.c        22 Mar 2007 23:42:00 -0000      1.20
@@ -44,7 +44,7 @@
 static Etk_Bool _window_decorated_get(Etk_Window *window);
 static void _window_shaped_set(Etk_Window *window, Etk_Bool shaped);  
 static Etk_Bool _window_shaped_get(Etk_Window *window);
-static void _window_has_alpha_set(Etk_Window *window, Etk_Bool alpha);
+static void _window_has_alpha_set(Etk_Window *window, Etk_Bool has_alpha);
 static Etk_Bool _window_has_alpha_get(Etk_Window *window);
 
 static void _window_move_cb(Ecore_Evas *ecore_evas);
@@ -464,13 +464,13 @@
 }
 
 /* Sets whether or not the window uses alpha (i.e. the window is translucent) 
*/
-static void _window_has_alpha_set(Etk_Window *window, Etk_Bool alpha)
+static void _window_has_alpha_set(Etk_Window *window, Etk_Bool has_alpha)
 {   
    Etk_Engine_Window_Data *engine_data;
    
    engine_data = window->engine_data;
-   ecore_evas_alpha_set(engine_data->ecore_evas, alpha);
-   etk_object_notify(ETK_OBJECT(window), "alpha");
+   ecore_evas_alpha_set(engine_data->ecore_evas, has_alpha);
+   etk_object_notify(ETK_OBJECT(window), "has-alpha");
 }
 
 /* Gets whether or not the window has alpha */



-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to