Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        ewl_box.c ewl_callback.c ewl_config.c ewl_dnd.c ewl_embed.c 
        ewl_events.c ewl_filelist.c ewl_filelist_column.c 
        ewl_filelist_icon.c ewl_filelist_list.c ewl_menu.c ewl_misc.c 
        ewl_object.c ewl_paned.c ewl_text.c ewl_theme.c ewl_widget.c 


Log Message:
- doxy changes

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_box.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- ewl_box.c   19 May 2006 04:30:16 -0000      1.28
+++ ewl_box.c   24 May 2006 02:55:15 -0000      1.29
@@ -869,6 +869,7 @@
 }
 
 /**
+ * @internal
  * @param c: The Ewl_Container containing the widget
  * @param w: The widget being resized
  * @param size: The size of the widget
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_callback.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- ewl_callback.c      14 Feb 2006 05:50:02 -0000      1.17
+++ ewl_callback.c      24 May 2006 02:55:15 -0000      1.18
@@ -112,7 +112,7 @@
  * ewl_callback_unregister - unreference a callback and free if appropriate
  * @cb: the callback to unregister
  *
- * Returns no value. Checks to see if @cb has nay remaining references, if not
+ * Returns no value. Checks to see if @cb has any remaining references, if not
  * it is removed from the registration system and freed.
  */
 static void
@@ -463,6 +463,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to delete the callbacks
  * @param t: the type of the callbacks to be deleted
  * @return Returns no value.
@@ -488,6 +489,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to delete the id
  * @param t: the type of event the callback is attached to
  * @param cb_id: the id of the callback to delete
@@ -523,6 +525,7 @@
 
 
 /**
+ * @internal
  * @param w: the widget to remove the callbacks
  * @return Returns no value.
  * @brief Remove all callbacks from the specified widget
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_config.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- ewl_config.c        29 Dec 2005 19:37:43 -0000      1.9
+++ ewl_config.c        24 May 2006 02:55:15 -0000      1.10
@@ -28,6 +28,7 @@
 Ewl_Config ewl_config;
 
 /**
+ * @internal
  * @return Returns true on success, false on failure.
  * @brief Initialize the configuration system
  *
@@ -47,6 +48,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value
  * @brief Shutdown the configuration system.
  */
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_dnd.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- ewl_dnd.c   23 May 2006 15:01:47 -0000      1.11
+++ ewl_dnd.c   24 May 2006 02:55:15 -0000      1.12
@@ -29,6 +29,7 @@
 static int ewl_dnd_event_dnd_move(void *data, int type, void *event);
 
 /**
+ * @internal
  * @return Returns TRUE if the DND system was successfully initialized,
  * FALSE otherwise
  * @brief Initialize the DND sybsystem
@@ -50,6 +51,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value.
  * @brief Shuts down the EWL DND system
  */
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_embed.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -3 -r1.58 -r1.59
--- ewl_embed.c 22 May 2006 19:11:37 -0000      1.58
+++ ewl_embed.c 24 May 2006 02:55:15 -0000      1.59
@@ -113,6 +113,7 @@
 }
 
 /**
+ * @internal
  * @brief Shutdown the embed 
  */
 void
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_events.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- ewl_events.c        12 Apr 2006 06:41:55 -0000      1.26
+++ ewl_events.c        24 May 2006 02:55:15 -0000      1.27
@@ -39,6 +39,7 @@
 
 
 /**
+ * @internal
  * @return Returns true or false to indicate success in initializing events.
  * @brief Initialize the event handlers for dispatching to proper widgets
  */
@@ -167,6 +168,7 @@
  */
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the expose event information
@@ -200,6 +202,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the configure event information
@@ -250,7 +253,8 @@
        /*
         * Configure events really only need to occur on resize.
         */
-       if ((ewl_object_current_w_get(EWL_OBJECT(window)) != ev->w) || 
(ewl_object_current_h_get(EWL_OBJECT(window)) != ev->h)) {
+       if ((ewl_object_current_w_get(EWL_OBJECT(window)) != ev->w) 
+                       || (ewl_object_current_h_get(EWL_OBJECT(window)) != 
ev->h)) {
 
     /* 
      * Right now this is commented out, as it was preventing windows from 
resizing
@@ -267,6 +271,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the delete event information
@@ -299,6 +304,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the key down event information
@@ -342,6 +348,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the key up event information
@@ -385,6 +392,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse down event information
@@ -421,6 +429,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse up event information
@@ -451,6 +460,7 @@
 
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse move event information
@@ -479,6 +489,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse out event information
@@ -505,6 +516,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse wheel event information
@@ -531,6 +543,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the focus in event information
@@ -557,6 +570,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the focus out event information
@@ -583,6 +597,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse out event information
@@ -609,6 +624,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the dnd position information
@@ -671,6 +687,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the dnd 'enter' information
@@ -704,6 +721,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the dnd 'leave' information
@@ -741,6 +759,7 @@
 
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the dnd 'drop' information
@@ -800,6 +819,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the dnd 'selection' information
@@ -846,6 +866,7 @@
 #ifdef ENABLE_EWL_FB
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the key down event information
@@ -875,6 +896,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the key up event information
@@ -903,6 +925,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse down event information
@@ -943,6 +966,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse up event information
@@ -973,6 +997,7 @@
 }
 
 /**
+ * @internal
  * @param data: user specified data passed to the function
  * @param type: the type of event triggering the function call
  * @param e: the mouse move event information
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -3 -r1.14 -r1.15
--- ewl_filelist.c      11 May 2006 04:01:20 -0000      1.14
+++ ewl_filelist.c      24 May 2006 02:55:15 -0000      1.15
@@ -660,6 +660,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @param dir: The directory to read
  * @param skip_dot_dot: Should the .. entry be skipped
@@ -735,6 +736,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @param w: The widget that was clicked
  * @param ev: The Ewl_Event_Mouse_Up structure
@@ -838,6 +840,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @param c: The container to select/unselect from
  * @param clicked: The clicked widget
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist_column.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ewl_filelist_column.c       11 May 2006 04:01:20 -0000      1.13
+++ ewl_filelist_column.c       24 May 2006 02:55:15 -0000      1.14
@@ -262,6 +262,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @return Returns no value.
  * @brief This will set all of the icons back to their unselected state
@@ -279,6 +280,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to deal with
  * @param clicked: The currently clicked item
  * @return Returns no value
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist_icon.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- ewl_filelist_icon.c 11 May 2006 04:01:20 -0000      1.7
+++ ewl_filelist_icon.c 24 May 2006 02:55:15 -0000      1.8
@@ -150,6 +150,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @return Returns no value.
  * @brief This will set all of the icons back to their unselected state
@@ -167,6 +168,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to deal with
  * @param clicked: The currently clicked item
  * @return Returns no value
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist_list.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -3 -r1.10 -r1.11
--- ewl_filelist_list.c 11 May 2006 04:01:20 -0000      1.10
+++ ewl_filelist_list.c 24 May 2006 02:55:15 -0000      1.11
@@ -154,6 +154,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to work with
  * @return Returns no value.
  * @brief This will set all of the rows back to their unselected state
@@ -171,6 +172,7 @@
 }
 
 /**
+ * @internal
  * @param fl: The filelist to deal with
  * @param clicked: The currently clicked item
  * @return Returns no value
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_menu.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- ewl_menu.c  13 Apr 2006 21:19:11 -0000      1.29
+++ ewl_menu.c  24 May 2006 02:55:15 -0000      1.30
@@ -3,7 +3,6 @@
 #include "ewl_debug.h"
 #include "ewl_macros.h"
 
-
 /**
  * @return Returns a pointer to a new menu on success, NULL on failure.
  * @brief Create a new internal menu
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_misc.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -3 -r1.50 -r1.51
--- ewl_misc.c  13 Apr 2006 20:37:23 -0000      1.50
+++ ewl_misc.c  24 May 2006 02:55:15 -0000      1.51
@@ -360,6 +360,7 @@
 }
 
 /**
+ * @internal
  * @param data: this is only necessary for registering this function with ecore
  * @return Returns TRUE to continue the timer.
  * @brief Renders updates during idle times of the main loop
@@ -711,6 +712,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value
  * @brief Configure all the widgets that need to be configured
  */
@@ -771,6 +773,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget that no longer needs to be configured
  * @return Returns no value.
  * @brief Cancel a request to configure a widget
@@ -790,6 +793,7 @@
 }
 
 /**
+ * @internal
  * @param w: widget to schedule for realization
  * @return Returns no value.
  * @brief Schedule a widget to be realized at idle time
@@ -824,6 +828,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget that no longer needs to be realized
  * @return Returns no value.
  * @brief Cancel a request to realize a widget
@@ -845,6 +850,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value
  * @brief Realize all widgets that need to be realized
  */
@@ -909,6 +915,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value.
  * @brief Marks that EWL is currently realizing a widget.
  */
@@ -923,6 +930,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value.
  * @brief Marks that EWL is not realizing a widget.
  */
@@ -937,6 +945,7 @@
 }
 
 /**
+ * @internal
  * @return Returns TRUE if currently realizing a widget, FALSE otherwise.
  * @brief Checks if EWL is currently in the process of realizing widgets.
  */
@@ -961,6 +970,7 @@
 }
 
 /**
+ * @internal
  * @param w: The widget to destroy
  * @return Returns no value
  * @brief Queues the widget to be destroyed. 
@@ -1001,6 +1011,7 @@
 }
 
 /**
+ * @internal
  * @param evas: evas to queue for destruction
  * @return Returns no value.
  * @brief Queues an evas to be destroyed at a later time.
@@ -1017,6 +1028,7 @@
 }
 
 /**
+ * @internal
  * @param obj: evas object to queue for destruction
  * @return Returns no value.
  * @brief Queues an evas object to be destroyed at a later time.
@@ -1035,6 +1047,7 @@
 #define EWL_GC_LIMIT 300 
 
 /**
+ * @internal
  * @param data: Unused.
  * @return Returns TRUE if objects remain to be freed, otherwise false.
  * @brief Free's all widgets that have been marked for destruction.
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_object.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- ewl_object.c        12 Apr 2006 06:13:58 -0000      1.13
+++ ewl_object.c        24 May 2006 02:55:15 -0000      1.14
@@ -4,6 +4,7 @@
 #include "ewl_macros.h"
 
 /**
+ * @internal
  * @param o: the object to initialize
  * @return Returns no value.
  * @brief Initialize the fields of an object
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_paned.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- ewl_paned.c 11 May 2006 04:01:20 -0000      1.29
+++ ewl_paned.c 24 May 2006 02:55:15 -0000      1.30
@@ -489,12 +489,19 @@
        ecore_dlist_goto_first(c->children);
        while ((child = ecore_dlist_next(c->children)))
        {
+               /* internal means grabber */
                if (ewl_widget_internal_is(child))
                {
+                       /* if there is a widget to the left we store the
+                        * grabber, otherwise, we have to hide the grabber */
                        if (left) g = child;
+                       else ewl_widget_hide(child);
                }
                else if (VISIBLE(child))
                {
+                       /* if we have a grabber to the left of us we need to
+                        * show it as that means there is a widget to the
+                        * left of us */
                        if (g)
                        {
                                ewl_widget_show(g);
@@ -512,6 +519,7 @@
  */
 
 /**
+ * @internal
  * @return Returns a new Ewl_Paned_Grabber widget or NULL on failure
  */
 Ewl_Widget *
@@ -535,6 +543,7 @@
 }
 
 /**
+ * @internal
  * @param g: The Ewl_Paned_Grabber to initialize
  * @return Returns TRUE on success or FALSE on failure
  */
@@ -561,6 +570,7 @@
 }
 
 /**
+ * @internal
  * @param g: The Ewl_Paned_Grabber to set the orientation on
  * @param o: The Ewl_Orientation to set on the grabber
  * @return Returns no value.
@@ -593,6 +603,7 @@
 }
 
 /**
+ * @internal
  * @param g: The Ewl_Paned_Grabber to get the orientation from
  * @return Returns the Ewl_Orientation set on the grabber
  */
@@ -609,6 +620,7 @@
 }
 
 /**
+ * @internal
  * @param g: The Ewl_Paned_Grabber to set the cursor for
  * @param dir: The diretions to show arrows for
  * @return Returns no value.
@@ -644,6 +656,7 @@
 }
 
 /**
+ * @internal
  * @param g: The grabber to work with
  * @param placed: The placed value to set
  * @return Returns no value
@@ -662,6 +675,7 @@
 }
 
 /**
+ * @internal
  * @param g: The grabber to work with
  * @return Returns if the placed setting of the grabber
  * @brief Retrieves the placed setting of the grabber
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_text.c,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -3 -r1.100 -r1.101
--- ewl_text.c  21 May 2006 03:51:41 -0000      1.100
+++ ewl_text.c  24 May 2006 02:55:15 -0000      1.101
@@ -3122,6 +3122,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text widget
  * @return Returns no value
  * @brief Configures the position and size of all the triggers within the 
@@ -3353,6 +3354,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text to work with
  * @return Returns no value
  * @brief Sets all of the triggers in the text @a t as realized
@@ -3380,6 +3382,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text to work with
  * @return Returns no value
  * @brief Sets all of the triggers in the text @a t as unrealized
@@ -3414,6 +3417,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text to work with
  * @return Returns no value
  * @brief Shows all triggers in text @a t
@@ -3452,6 +3456,7 @@
 }
 
 /**
+ * @internal
  * @param t: The text to work with
  * @return Returns no value
  * @brief Hides all of the triggers in the text @a t
@@ -3643,6 +3648,7 @@
  */
 
 /**
+ * @internal
  * @param type: The trigger area type to create
  * @return Returns a new trigger area of the given type
  * @brief Creates and returns a new trigger_area of the given type
@@ -3670,6 +3676,7 @@
 }
 
 /**
+ * @internal
  * @param area: The trigger area to initialize
  * @param type: The type of the trigger area
  * @return Returns TRUE on success or FALSE on failure
@@ -3757,6 +3764,7 @@
  */
 
 /**
+ * @internal
  * @return Returns TRUE on success or FALSE on failure
  * @brief Initializes the context system
  */
@@ -3776,6 +3784,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value
  * @brief Shuts the context system down
  */
@@ -3796,6 +3805,7 @@
 }
 
 /**
+ * @internal
  * @return Returns a new text context
  * @brief Creates and returns a new text context
  */
@@ -3813,6 +3823,7 @@
 }
 
 /**
+ * @internal
  * @param old: The context to duplicate
  * @return Returns a new context with the same values
  * @brief Duplicates the given context and returns the new version
@@ -4183,6 +4194,7 @@
 }
 
 /**
+ * @internal
  * @param tx: The context to work with
  * @return Returns no value
  * @brief Acquires a reference to the given context
@@ -4199,6 +4211,7 @@
 }
 
 /**
+ * @internal
  * @param tx: The context to work with
  * @return Returns no value
  * @brief Releases a reference on the given context. 
@@ -4227,6 +4240,7 @@
 }
 
 /**
+ * @internal
  * @param a: The first context
  * @param b: The second context
  * @return Returns TRUE if the two contexts are the same
@@ -4290,6 +4304,7 @@
  */
 
 /**
+ * @internal
  * @return Returns a new ewl_text_Tree
  * @brief Creates and initializes a new text tree
  */
@@ -4310,6 +4325,7 @@
 }
 
 /**
+ * @internal
  * @param tree: The text tree to free
  * @return Returns no value
  * @brief Frees the contents of the given text tree
@@ -4344,6 +4360,7 @@
 }
 
 /**
+ * @internal
  * @param tree: The tree to work with
  * @param idx: The index to get the node from
  * @param inclusive: Include the edge numbers
@@ -4391,6 +4408,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text to work with
  * @param current: The node to set current
  * @return Returns no value
@@ -4437,6 +4455,7 @@
 }
 
 /**
+ * @internal
  * @param t: The text to insert into
  * @param idx: The index to insert into
  * @param len: The length to insert
@@ -4473,6 +4492,7 @@
 }
 
 /**
+ * @internal
  * @param t: The ewl_text to work with
  * @param idx: The index to delete from
  * @param len: The length to delete
@@ -4593,6 +4613,7 @@
 }
 
 /**
+ * @internal
  * @param tree: The tree to work with
  * @param idx: The node index
  * @return Returns the Ewl_Text_Context retrieved
@@ -4613,6 +4634,7 @@
 }
 
 /**
+ * @internal
  * @param t: The tree to work with
  * @param context_mask: The mask of items changing in the cntext
  * @param tx: The context of things changing
@@ -4682,6 +4704,7 @@
 }
 
 /**
+ * @internal
  * @param t: The text to work with
  * @param context_mask: The mask to use
  * @param tx: The context to work with
@@ -4734,6 +4757,7 @@
 }
 
 /**
+ * @internal
  * @param t: The text to work with
  * @param style: The style to set
  * @param idx: The index to start from
@@ -4792,6 +4816,7 @@
 }
 
 /**
+ * @internal
  * @param t: The text to work with
  * @param style: The style to remove
  * @param idx: The index to start from
@@ -4984,6 +5009,7 @@
 }
 
 /**
+ * @internal
  * @param tree: The tree to work with
  * @return Returns no values
  * @brief Searchs for siblings that are the same and merges the nodes 
@@ -5000,6 +5026,7 @@
 }
 
 /**
+ * @internal
  * @param tree: The tree to work with
  * @param indent: The indent string to use
  * @return Returns no value
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_theme.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -3 -r1.22 -r1.23
--- ewl_theme.c 20 Apr 2006 04:09:51 -0000      1.22
+++ ewl_theme.c 24 May 2006 02:55:15 -0000      1.23
@@ -16,6 +16,7 @@
 static void ewl_theme_data_free(void *data);
 
 /**
+ * @internal
  * @return Returns TRUE on success, FALSE on failure.
  * @brief Initialize the themeing  system
  *
@@ -148,6 +149,7 @@
 }
 
 /**
+ * @internal
  * @return Returns no value.
  * @brief Shutdown the EWL themeing subsystem
  */
@@ -236,6 +238,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to initialize theme information
  * @return Returns TRUE on success, FALSE on failure.
  * @brief Initialize a widgets theme information to the default
@@ -256,6 +259,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to remove theme information
  * @return Returns no value.
  * @brief remove the theme information from a widget
===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_widget.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -3 -r1.76 -r1.77
--- ewl_widget.c        21 May 2006 03:51:41 -0000      1.76
+++ ewl_widget.c        24 May 2006 02:55:15 -0000      1.77
@@ -1471,6 +1471,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to mark as internally used
  * @param val: a boolean to indicate the state of the internal flag
  * @return Returns no value.
@@ -1566,6 +1567,7 @@
 }
 
 /**
+ * @internal
  * @param w: the widget to query the state of the internal flag
  * @return Returns TRUE if the widget is marked internal, otherwise FALSE.
  * @brief Checks the widget for the internal flag.




-------------------------------------------------------
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=107521&bid=248729&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to