]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove unused 'Color_Widget'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 30 Sep 2021 02:46:27 +0000 (19:46 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 2 Oct 2021 02:58:24 +0000 (19:58 -0700)
cmd/smyrna/gui/gui.c
cmd/smyrna/gui/gui.h

index 1db3f882dfb8e53ab49e8030007fce05bbb58bc3..532e92b491573024240fa32a6d3dfdb9d34b803c 100644 (file)
@@ -33,23 +33,6 @@ int attr_widgets_modified[MAXIMUM_WIDGET_COUNT];
 int widgetcounter;             //number of attributes counted dynamically, might be removed in the future 
 attribute attr[MAXIMUM_WIDGET_COUNT];
 
-void Color_Widget(char *colorstring, GtkWidget * widget)
-{
-  GtkRcStyle *rc_style;
-  GdkColor color;
-
-  gdk_color_parse (colorstring, &color);
-
-
-  rc_style = gtk_rc_style_new ();
-  /* Set foreground (fg) color in normal state to red */
-  rc_style->fg[GTK_STATE_NORMAL] = color;
-  rc_style->color_flags[GTK_STATE_NORMAL] |= GTK_RC_FG;
-
-  gtk_widget_modify_style (widget, rc_style);
-  gtk_rc_style_unref (rc_style);
-}
-
 void Color_Widget_bg(char *colorstring, GtkWidget * widget)
 {
     GdkColor color;
index 60354662a9a00a4ac87abceaf4375d49a013f48e..78a8a873617037a5f99643faf42706361ac16a77 100644 (file)
@@ -46,7 +46,6 @@ extern "C" {
 //GTK helpre functions
 //void Color_Widget_bg (int r, int g, int b, GtkWidget *widget);        //change background color 
     void Color_Widget_bg(char *colorstring, GtkWidget * widget);
-       void Color_Widget(char *colorstring, GtkWidget * widget);
 /*generic warning pop up*/
     void show_gui_warning(char *str);
 /*generic open file dialog*/