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

gEDA-cvs: gaf.git: branch: master updated (1.5.0-20080706-389-g1d16923)



The branch, master has been updated
       via  1d16923d30f2348184675df66e5b67e893d3c519 (commit)
      from  2aabf7fa7200f55b6bf3825cdf382af901484f0a (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
=========

 gschem/src/x_dialog.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


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

commit 1d16923d30f2348184675df66e5b67e893d3c519
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Wed Dec 17 14:43:20 2008 +0000

    gschem: Use o_{erase,redraw}_single() not o_{erase,draw}_selected()
    
    x_dialog.c: arc_angle_dialog_response() used the selection specific
    routines where it could have just used the pointer to the OBJECT.

:100644 100644 a11c85f... 8923505... M	gschem/src/x_dialog.c

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

commit 1d16923d30f2348184675df66e5b67e893d3c519
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Date:   Wed Dec 17 14:43:20 2008 +0000

    gschem: Use o_{erase,redraw}_single() not o_{erase,draw}_selected()
    
    x_dialog.c: arc_angle_dialog_response() used the selection specific
    routines where it could have just used the pointer to the OBJECT.

diff --git a/gschem/src/x_dialog.c b/gschem/src/x_dialog.c
index a11c85f..8923505 100644
--- a/gschem/src/x_dialog.c
+++ b/gschem/src/x_dialog.c
@@ -1442,11 +1442,11 @@ void arc_angle_dialog_response(GtkWidget *w, gint response,
     arc_object = (OBJECT*) g_object_get_data(G_OBJECT(w_current->aawindow),"arc_object");
 
     if (arc_object != NULL) {
-      o_erase_selected(w_current);
+      o_erase_single (w_current, arc_object);
       o_arc_modify(w_current->toplevel, arc_object, radius, 0, ARC_RADIUS);
       o_arc_modify(w_current->toplevel, arc_object, start_angle, 0, ARC_START_ANGLE);
       o_arc_modify(w_current->toplevel, arc_object, sweep_angle, 0, ARC_END_ANGLE);
-      o_draw_selected(w_current);
+      o_redraw_single (w_current, arc_object);
     } else {
       o_arc_end4(w_current, radius, start_angle, sweep_angle);
     }




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