SF.net SVN: geany:[3301] trunk/src/prefs.c

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Dec 1 14:45:26 UTC 2008


Revision: 3301
          http://geany.svn.sourceforge.net/geany/?rev=3301&view=rev
Author:   ntrel
Date:     2008-12-01 14:45:26 +0000 (Mon, 01 Dec 2008)

Log Message:
-----------
Remove VTE emulation widget code.

Modified Paths:
--------------
    trunk/src/prefs.c

Modified: trunk/src/prefs.c
===================================================================
--- trunk/src/prefs.c	2008-12-01 14:39:26 UTC (rev 3300)
+++ trunk/src/prefs.c	2008-12-01 14:45:26 UTC (rev 3301)
@@ -718,9 +718,6 @@
 		widget = lookup_widget(ui_widgets.prefs_dialog, "spin_scrollback");
 		gtk_spin_button_set_value(GTK_SPIN_BUTTON(widget), vc->scrollback_lines);
 
-		widget = lookup_widget(ui_widgets.prefs_dialog, "entry_emulation");
-		gtk_entry_set_text(GTK_ENTRY(widget), vc->emulation);
-
 		widget = lookup_widget(ui_widgets.prefs_dialog, "entry_shell");
 		gtk_entry_set_text(GTK_ENTRY(widget), vc->shell);
 
@@ -1098,10 +1095,6 @@
 			widget = lookup_widget(ui_widgets.prefs_dialog, "spin_scrollback");
 			vc->scrollback_lines = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(widget));
 
-			widget = lookup_widget(ui_widgets.prefs_dialog, "entry_emulation");
-			g_free(vc->emulation);
-			vc->emulation = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));
-
 			widget = lookup_widget(ui_widgets.prefs_dialog, "entry_shell");
 			g_free(vc->shell);
 			vc->shell = g_strdup(gtk_entry_get_text(GTK_ENTRY(widget)));


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list