Revision: 138 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=138&view=rev Author: eht16 Date: 2008-08-03 19:04:05 +0000 (Sun, 03 Aug 2008)
Log Message: ----------- Oops, this code shouldn't be commented out.
Modified Paths: -------------- trunk/spellcheck/src/spellcheck.c
Modified: trunk/spellcheck/src/spellcheck.c =================================================================== --- trunk/spellcheck/src/spellcheck.c 2008-08-03 18:55:54 UTC (rev 137) +++ trunk/spellcheck/src/spellcheck.c 2008-08-03 19:04:05 UTC (rev 138) @@ -773,14 +773,14 @@ gtk_box_pack_start(GTK_BOX(vbox), label, FALSE, FALSE, 3);
combo = gtk_combo_box_new_text(); -/* + for (i = 0; i < sc->dicts->len; i++) { gtk_combo_box_append_text(GTK_COMBO_BOX(combo), g_ptr_array_index(sc->dicts, i));
if (p_utils->str_equal(g_ptr_array_index(sc->dicts, i), sc->default_language)) gtk_combo_box_set_active(GTK_COMBO_BOX(combo), i); - }*/ + } /* if the default language couldn't be selected, select the first available language */ if (gtk_combo_box_get_active(GTK_COMBO_BOX(combo)) == -1) gtk_combo_box_set_active(GTK_COMBO_BOX(combo), 0);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org