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

gEDA-cvs: gaf.git: branch: master updated (1.6.1-20100214-126-g7707668)



The branch, master has been updated
  discards  8913ba1fa9d340aa00180bf37d1cddfa2fbc5a4a (commit)
       via  770766888e2d88d9552b4598a2c0a2016a9de315 (commit)
       via  02f63ca3dd7012134e7b5649c3a185edc67186a7 (commit)
      from  8913ba1fa9d340aa00180bf37d1cddfa2fbc5a4a (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
=========

 build-tools/desktop-i18n            |   11 +++--------
 libgeda/include/libgeda/prototype.h |    1 -
 libgeda/src/f_basic.c               |   14 --------------
 libgeda/src/o_list.c                |    1 -
 libgeda/src/s_basic.c               |    4 ----
 libgeda/src/s_page.c                |    4 ----
 libgeda/src/s_toplevel.c            |    4 ----
 7 files changed, 3 insertions(+), 36 deletions(-)


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

commit 770766888e2d88d9552b4598a2c0a2016a9de315
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    libgeda: Remove f_save_close().
    
    This function is not currently used, and relies on
    TOPLEVEL.page_current.

:100644 100644 d177a61... 47a0fbb... M	libgeda/include/libgeda/prototype.h
:100644 100644 12c0c69... afe83c9... M	libgeda/src/f_basic.c

commit 02f63ca3dd7012134e7b5649c3a185edc67186a7
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    libgeda: Misc. doxygen fixes.

:100644 100644 0be7c7d... be45238... M	libgeda/src/o_list.c
:100644 100644 84c40d5... d199063... M	libgeda/src/s_basic.c
:100644 100644 7049e61... 3621319... M	libgeda/src/s_page.c
:100644 100644 beb9d72... 00a9225... M	libgeda/src/s_toplevel.c

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

commit 770766888e2d88d9552b4598a2c0a2016a9de315
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    libgeda: Remove f_save_close().
    
    This function is not currently used, and relies on
    TOPLEVEL.page_current.

diff --git a/libgeda/include/libgeda/prototype.h b/libgeda/include/libgeda/prototype.h
index d177a61..47a0fbb 100644
--- a/libgeda/include/libgeda/prototype.h
+++ b/libgeda/include/libgeda/prototype.h
@@ -15,7 +15,6 @@ int f_open(TOPLEVEL *toplevel, const gchar *filename, GError **err);
 int f_open_flags(TOPLEVEL *toplevel, const gchar *filename,
                  const gint flags, GError **err);
 void f_close(TOPLEVEL *toplevel);
-void f_save_close(TOPLEVEL *toplevel, char *filename);
 int f_save(TOPLEVEL *toplevel, const char *filename);
 gchar *f_normalize_filename (const gchar *filename, GError **error);
 char *follow_symlinks (const gchar *filename, GError **error);
diff --git a/libgeda/src/f_basic.c b/libgeda/src/f_basic.c
index 12c0c69..afe83c9 100644
--- a/libgeda/src/f_basic.c
+++ b/libgeda/src/f_basic.c
@@ -331,20 +331,6 @@ void f_close(TOPLEVEL *toplevel)
 
 }
 
-/*! \brief Save schematic file and close
- *  \par Function Description
- *  This function will save the current schematic file before closing it.
- *  It also deletes the page_current item in the TOPLEVEL structure.
- *
- *  \param [in,out] toplevel  The TOPLEVEL object containing the schematic.
- *  \param [in]      filename  The file name to save the schematic to.
- */
-void f_save_close(TOPLEVEL *toplevel, char *filename)
-{
-  o_save_curr_page (toplevel, filename);
-  s_page_delete (toplevel, toplevel->page_current);
-}
-
 /*! \brief Save the schematic file
  *  \par Function Description
  *  This function saves the current schematic file in the toplevel object.

commit 02f63ca3dd7012134e7b5649c3a185edc67186a7
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Commit: Peter TB Brett <peter@xxxxxxxxxxxxx>

    libgeda: Misc. doxygen fixes.

diff --git a/libgeda/src/o_list.c b/libgeda/src/o_list.c
index 0be7c7d..be45238 100644
--- a/libgeda/src/o_list.c
+++ b/libgeda/src/o_list.c
@@ -129,7 +129,6 @@ OBJECT *o_object_copy (TOPLEVEL *toplevel,
  *  \param [in] toplevel       The TOPLEVEL object.
  *  \param [in] src_list       The GList to copy from.
  *  \param [in] dest_list      The GList to copy to.
- *  \param [in] flag
  *  \return the dest_list GList with objects appended to it.
  */
 GList *o_glist_copy_all (TOPLEVEL *toplevel,
diff --git a/libgeda/src/s_basic.c b/libgeda/src/s_basic.c
index 84c40d5..d199063 100644
--- a/libgeda/src/s_basic.c
+++ b/libgeda/src/s_basic.c
@@ -346,7 +346,6 @@ s_delete_object_glist(TOPLEVEL *toplevel, GList *list)
  *
  * \sa s_object_weak_unref
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] object     Object to weak-reference.
  * \param [in] notify_func    Weak reference notify function.
  * \param [in] user_data      Data to be passed to \a notify_func.
@@ -366,7 +365,6 @@ s_object_weak_ref (OBJECT *object,
  *
  * \sa s_object_weak_ref()
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] object     Object to weak-reference.
  * \param [in] notify_func    Notify function to search for.
  * \param [in] user_data      Data to to search for.
@@ -389,7 +387,6 @@ s_object_weak_unref (OBJECT *object,
  *
  * \sa s_object_remove_weak_ptr
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] object        Object to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */
@@ -407,7 +404,6 @@ s_object_add_weak_ptr (OBJECT *object,
  *
  * \sa s_object_add_weak_ptr()
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] object        Object to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */
diff --git a/libgeda/src/s_page.c b/libgeda/src/s_page.c
index 7049e61..3621319 100644
--- a/libgeda/src/s_page.c
+++ b/libgeda/src/s_page.c
@@ -309,7 +309,6 @@ void s_page_delete_list(TOPLEVEL *toplevel)
  *
  * \sa s_page_weak_unref
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] page       Page to weak-reference.
  * \param [in] notify_func    Weak reference notify function.
  * \param [in] user_data      Data to be passed to \a notify_func.
@@ -329,7 +328,6 @@ s_page_weak_ref (PAGE *page,
  *
  * \sa s_page_weak_ref()
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] page       Page to weak-reference.
  * \param [in] notify_func    Notify function to search for.
  * \param [in] user_data      Data to to search for.
@@ -352,7 +350,6 @@ s_page_weak_unref (PAGE *page,
  *
  * \sa s_page_remove_weak_ptr
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] page          Page to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */
@@ -370,7 +367,6 @@ s_page_add_weak_ptr (PAGE *page,
  *
  * \sa s_page_add_weak_ptr()
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] page          Page to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */
diff --git a/libgeda/src/s_toplevel.c b/libgeda/src/s_toplevel.c
index beb9d72..00a9225 100644
--- a/libgeda/src/s_toplevel.c
+++ b/libgeda/src/s_toplevel.c
@@ -195,7 +195,6 @@ void s_toplevel_delete (TOPLEVEL *toplevel)
  *
  * \sa s_toplevel_weak_unref
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] toplevel   Toplevel to weak-reference.
  * \param [in] notify_func    Weak reference notify function.
  * \param [in] user_data      Data to be passed to \a notify_func.
@@ -216,7 +215,6 @@ s_toplevel_weak_ref (TOPLEVEL *toplevel,
  *
  * \sa s_toplevel_weak_ref()
  *
- * \param [in] toplevel       The #TOPLEVEL structure.
  * \param [in,out] toplevel       Toplevel to weak-reference.
  * \param [in] notify_func    Notify function to search for.
  * \param [in] user_data      Data to to search for.
@@ -239,7 +237,6 @@ s_toplevel_weak_unref (TOPLEVEL *toplevel,
  *
  * \sa s_toplevel_remove_weak_ptr
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] toplevel      Toplevel to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */
@@ -258,7 +255,6 @@ s_toplevel_add_weak_ptr (TOPLEVEL *toplevel,
  *
  * \sa s_toplevel_add_weak_ptr()
  *
- * \param [in] toplevel          The #TOPLEVEL structure.
  * \param [in,out] toplevel      Toplevel to weak-reference.
  * \param [in] weak_pointer_loc  Memory address of a pointer.
  */




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