Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        ewl_object.h 


Log Message:
Remove unnecessary masking.

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_object.h,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- ewl_object.h        5 Mar 2007 23:26:05 -0000       1.22
+++ ewl_object.h        5 Mar 2007 23:50:31 -0000       1.23
@@ -225,8 +225,7 @@
  * @brief Retrieves the current setting of the recursive flag for @a o.
  */
 #define ewl_object_recursive_get(o) \
-       (ewl_object_flags_get(o, EWL_FLAGS_PROPERTY_MASK) & \
-        EWL_FLAG_PROPERTY_RECURSIVE)
+       (ewl_object_flags_get(o, EWL_FLAG_PROPERTY_RECURSIVE))
 
 /**
  * @def ewl_object_toplevel_set(o, val)
@@ -248,8 +247,7 @@
  * @brief Retrieves the current setting of the top level flag for @a o.
  */
 #define ewl_object_toplevel_get(o) \
-       (ewl_object_flags_get(o, EWL_FLAGS_PROPERTY_MASK) & \
-        EWL_FLAG_PROPERTY_TOPLEVEL)
+       (ewl_object_flags_get(o, EWL_FLAG_PROPERTY_TOPLEVEL))
 
 /**
  * @def ewl_object_state_add(o, state)
@@ -580,8 +578,7 @@
  * @brief Retrieves the current setting of the in tab list flag for @a o.
  */
 #define ewl_object_in_tab_list_get(o) \
-       (ewl_object_flags_get(o, EWL_FLAGS_PROPERTY_MASK) & \
-        EWL_FLAG_PROPERTY_IN_TAB_LIST)
+       (ewl_object_flags_get(o, EWL_FLAG_PROPERTY_IN_TAB_LIST))
 
 /**
  * @def ewl_object_in_tab_list_set(o, val)



-------------------------------------------------------------------------
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