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

gEDA-cvs: gaf.git: branch: master updated (1.6.1-20100214-82-g8e3d9a6)



The branch, master has been updated
       via  8e3d9a6a219ee166260bdc1e1d2980878b524450 (commit)
      from  e5aecb64ebaa24e9511a7f814aeffc2a334d563f (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/include/prototype.h    |    2 --
 gschem/lib/system-gschemrc.in |    1 -
 gschem/src/g_keys.c           |    1 -
 gschem/src/g_register.c       |    1 -
 gschem/src/i_callbacks.c      |   15 ---------------
 5 files changed, 0 insertions(+), 20 deletions(-)


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

commit 8e3d9a6a219ee166260bdc1e1d2980878b524450
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    gschem: Remove the view_update_cues function
    
    This function doesn't do anything different to view->redraw.

:100644 100644 8e05d9c... 0dafebf... M	gschem/include/prototype.h
:100644 100644 ad8c452... 0f660c5... M	gschem/lib/system-gschemrc.in
:100644 100644 4bee5d3... 7a1ef09... M	gschem/src/g_keys.c
:100644 100644 3ae65ed... 987b898... M	gschem/src/g_register.c
:100644 100644 2c4b343... 37f8823... M	gschem/src/i_callbacks.c

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

commit 8e3d9a6a219ee166260bdc1e1d2980878b524450
Author: Peter Clifton <pcjc2@xxxxxxxxx>
Commit: Peter Clifton <pcjc2@xxxxxxxxx>

    gschem: Remove the view_update_cues function
    
    This function doesn't do anything different to view->redraw.

diff --git a/gschem/include/prototype.h b/gschem/include/prototype.h
index 8e05d9c..0dafebf 100644
--- a/gschem/include/prototype.h
+++ b/gschem/include/prototype.h
@@ -133,7 +133,6 @@ SCM g_keys_view_pan_right(SCM rest);
 SCM g_keys_view_pan_up(SCM rest);
 SCM g_keys_view_pan_down(SCM rest);
 SCM g_keys_view_pan_hotkey(SCM rest);
-SCM g_keys_view_update_cues(SCM rest);
 SCM g_keys_view_dark_colors(SCM rest);
 SCM g_keys_view_light_colors(SCM rest);
 SCM g_keys_page_manager(SCM rest);
@@ -369,7 +368,6 @@ void i_callback_view_pan_right(gpointer data, guint callback_action, GtkWidget *
 void i_callback_view_pan_up(gpointer data, guint callback_action, GtkWidget *widget);
 void i_callback_view_pan_down(gpointer data, guint callback_action, GtkWidget *widget);
 void i_callback_view_pan_hotkey(gpointer data, guint callback_action, GtkWidget *widget);
-void i_callback_view_update_cues(gpointer data, guint callback_action, GtkWidget *widget);
 void i_callback_view_dark_colors(gpointer data, guint callback_action, GtkWidget *widget);
 void i_callback_view_light_colors(gpointer data, guint callback_action, GtkWidget *widget);
 void i_callback_page_manager(gpointer data, guint callback_action, GtkWidget *widget);
diff --git a/gschem/lib/system-gschemrc.in b/gschem/lib/system-gschemrc.in
index ad8c452..0f660c5 100644
--- a/gschem/lib/system-gschemrc.in
+++ b/gschem/lib/system-gschemrc.in
@@ -1211,7 +1211,6 @@
     ("f" . view-zoom-full)
     ("e" . view-zoom-extents)
     ("p" . view-pan-hotkey)
-    ("u" . view-update-cues)
     ("o" . view-zoom-out-hotkey)
     ("i" . view-zoom-in-hotkey)
     ("d" . view-dark-colors)
diff --git a/gschem/src/g_keys.c b/gschem/src/g_keys.c
index 4bee5d3..7a1ef09 100644
--- a/gschem/src/g_keys.c
+++ b/gschem/src/g_keys.c
@@ -302,7 +302,6 @@ DEFINE_G_KEYS(view_pan_right)
 DEFINE_G_KEYS(view_pan_up)
 DEFINE_G_KEYS(view_pan_down)
 DEFINE_G_KEYS(view_pan_hotkey)
-DEFINE_G_KEYS(view_update_cues)
 DEFINE_G_KEYS(view_dark_colors)
 DEFINE_G_KEYS(view_light_colors)
 DEFINE_G_KEYS(page_manager)
diff --git a/gschem/src/g_register.c b/gschem/src/g_register.c
index 3ae65ed..987b898 100644
--- a/gschem/src/g_register.c
+++ b/gschem/src/g_register.c
@@ -237,7 +237,6 @@ static struct gsubr_t gschem_funcs[] = {
   { "view-pan-right",		 0, 0, 0, g_keys_view_pan_right },
   { "view-pan-up",		 0, 0, 0, g_keys_view_pan_up },
   { "view-pan-down",		 0, 0, 0, g_keys_view_pan_down },
-  { "view-update-cues",          0, 0, 0, g_keys_view_update_cues },
   { "view-dark-colors",          0, 0, 0, g_keys_view_dark_colors },
   { "view-light-colors",         0, 0, 0, g_keys_view_light_colors },
   { "page-manager",              0, 0, 0, g_keys_page_manager },
diff --git a/gschem/src/i_callbacks.c b/gschem/src/i_callbacks.c
index 2c4b343..37f8823 100644
--- a/gschem/src/i_callbacks.c
+++ b/gschem/src/i_callbacks.c
@@ -1559,21 +1559,6 @@ DEFINE_I_CALLBACK(view_pan_hotkey)
  *  \par Function Description
  *
  */
-DEFINE_I_CALLBACK(view_update_cues)
-{
-  GSCHEM_TOPLEVEL *w_current = (GSCHEM_TOPLEVEL*) data;
-
-  i_update_middle_button(w_current,
-                         i_callback_view_update_cues, _("Update Cues"));
-
-  o_invalidate_all (w_current);
-}
-
-/*! \todo Finish function documentation!!!
- *  \brief
- *  \par Function Description
- *
- */
 DEFINE_I_CALLBACK (view_dark_colors)
 {
   GSCHEM_TOPLEVEL *w_current = (GSCHEM_TOPLEVEL*) data;




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