[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: gaf.git: branch: master updated (1.5.2-20090328-62-ga1f2394)



The branch, master has been updated
       via  a1f2394de855ee1d0cc2c931ed9aef86763eecbf (commit)
      from  4aa6cd61c253046806a5818bd6fd8be87296d634 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 libgeda/src/o_attrib.c    |    6 +++---
 libgeda/src/o_pin_basic.c |    1 +
 libgeda/src/o_selection.c |   18 +++++++++++++-----
 libgeda/src/s_page.c      |   11 +++++++----
 4 files changed, 24 insertions(+), 12 deletions(-)


=================
 Commit Messages
=================

commit a1f2394de855ee1d0cc2c931ed9aef86763eecbf
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    libgeda: Add to doxygen comments for APIs which had TOPLEVEL added
    
    Forgot to add these in commit #a9d64bf7db382ed3c6ac2b89e0434af80bc1e19c

:100644 100644 d88a472... f0cf090... M	libgeda/src/o_attrib.c
:100644 100644 4e5b594... 9f8aa3b... M	libgeda/src/o_pin_basic.c
:100644 100644 df4e144... 8ebe915... M	libgeda/src/o_selection.c
:100644 100644 7f62681... 089cf59... M	libgeda/src/s_page.c

=========
 Changes
=========

commit a1f2394de855ee1d0cc2c931ed9aef86763eecbf
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    libgeda: Add to doxygen comments for APIs which had TOPLEVEL added
    
    Forgot to add these in commit #a9d64bf7db382ed3c6ac2b89e0434af80bc1e19c

diff --git a/libgeda/src/o_attrib.c b/libgeda/src/o_attrib.c
index d88a472..f0cf090 100644
--- a/libgeda/src/o_attrib.c
+++ b/libgeda/src/o_attrib.c
@@ -237,9 +237,9 @@ void o_attrib_print(GList *attributes)
  *  This function removes the given attribute from an attribute list.
  *  This function should be used when detaching an attribute.
  *
- *  \param [in] list    The attribute list to remove attribute from.
- *  \param [in] remove  The OBJECT to remove from list.
- *
+ *  \param [in] toplevel  The TOPLEVEL object.
+ *  \param [in] list      The attribute list to remove attribute from.
+ *  \param [in] remove    The OBJECT to remove from list.
  */
 void o_attrib_remove(TOPLEVEL *toplevel, GList **list, OBJECT *remove)
 {
diff --git a/libgeda/src/o_pin_basic.c b/libgeda/src/o_pin_basic.c
index 4e5b594..9f8aa3b 100644
--- a/libgeda/src/o_pin_basic.c
+++ b/libgeda/src/o_pin_basic.c
@@ -580,6 +580,7 @@ void o_pin_update_whichend(TOPLEVEL *toplevel,
  *  \par Function Description
  *  Sets the pin's type and width to a particular style.
  *
+ *  \param [in] toplevel   The TOPLEVEL object
  *  \param [in] o_current  The pin OBJECT being modified
  *  \param [in] type       The new type of this pin
  */
diff --git a/libgeda/src/o_selection.c b/libgeda/src/o_selection.c
index df4e144..8ebe915 100644
--- a/libgeda/src/o_selection.c
+++ b/libgeda/src/o_selection.c
@@ -43,7 +43,9 @@ SELECTION *o_selection_new( void )
 /*! \brief Selects the given object and adds it to the selection list
  *  \par Selects the given object and does the needed work to make the
  *  object visually selected.
- *  \param [in] selection Pointer to the selection list
+ *
+ *  \param [in] toplevel   The TOPLEVEL object
+ *  \param [in] selection  Pointer to the selection list
  *  \param [in] o_selected Object to select.
  */
 void o_selection_add (TOPLEVEL *toplevel, SELECTION *selection, OBJECT *o_selected)
@@ -57,7 +59,9 @@ void o_selection_add (TOPLEVEL *toplevel, SELECTION *selection, OBJECT *o_select
  *  needed work to make the object visually unselected.
  *  It's ok to call this function with an object which is not necessarily
  *  selected.
- *  \param [in] selection Pointer to the selection list
+ *
+ *  \param [in] toplevel   The TOPLEVEL object
+ *  \param [in] selection  Pointer to the selection list
  *  \param [in] o_selected Object to unselect and remove from the list.
  */
 void o_selection_remove (TOPLEVEL *toplevel, SELECTION *selection, OBJECT *o_selected)
@@ -99,8 +103,10 @@ void o_selection_print_all(const SELECTION *selection)
 /*! \brief Selects the given object.
  *  \par Sets the select flag, saves the color, and then selects the 
  *  given object
- *  \param [in] object Object to select.
- *  \param [in] color color of the selected object.
+ *
+ *  \param [in] toplevel  The TOPLEVEL object
+ *  \param [in] object    Object to select.
+ *  \param [in] color     color of the selected object.
  */
 void o_selection_select(TOPLEVEL *toplevel, OBJECT *object, int color)
 {
@@ -128,7 +134,9 @@ void o_selection_select(TOPLEVEL *toplevel, OBJECT *object, int color)
  *  \par Unsets the select flag, restores the original color of the
  *  given object.
  *  This function should not be called by anybody outside of this file.
- *  \param [in] object Object to unselect.
+ *
+ *  \param [in] toplevel  The TOPLEVEL object
+ *  \param [in] object    Object to unselect.
  */
 void o_selection_unselect (TOPLEVEL *toplevel, OBJECT *object)
 {
diff --git a/libgeda/src/s_page.c b/libgeda/src/s_page.c
index 7f62681..089cf59 100644
--- a/libgeda/src/s_page.c
+++ b/libgeda/src/s_page.c
@@ -513,8 +513,9 @@ gint s_page_autosave (TOPLEVEL *toplevel)
  *  Links the passed OBJECT to the end of the PAGE's
  *  linked list of objects.
  *
- *  \param [in] page    The PAGE the object is being added to.
- *  \param [in] object  The OBJECT being added to the page.
+ *  \param [in] toplevel  The TOPLEVEL object.
+ *  \param [in] page      The PAGE the object is being added to.
+ *  \param [in] object    The OBJECT being added to the page.
  */
 void s_page_append (TOPLEVEL *toplevel, PAGE *page, OBJECT *object)
 {
@@ -527,6 +528,7 @@ void s_page_append (TOPLEVEL *toplevel, PAGE *page, OBJECT *object)
  *  Links the passed OBJECT GList to the end of the PAGE's
  *  object_list.
  *
+ *  \param [in] toplevel  The TOPLEVEL object.
  *  \param [in] page      The PAGE the objects are being added to.
  *  \param [in] obj_list  The OBJECT list being added to the page.
  */
@@ -541,8 +543,9 @@ void s_page_append_list (TOPLEVEL *toplevel, PAGE *page, GList *obj_list)
  *  Removes the passed OBJECT from the PAGE's
  *  linked list of objects.
  *
- *  \param [in] page    The PAGE the object is being removed from.
- *  \param [in] object  The OBJECT being removed from the page.
+ *  \param [in] toplevel  The TOPLEVEL object.
+ *  \param [in] page      The PAGE the object is being removed from.
+ *  \param [in] object    The OBJECT being removed from the page.
  */
 void s_page_remove (TOPLEVEL *toplevel, PAGE *page, OBJECT *object)
 {




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs