Fixed a little typo

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2204 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2008-01-31 19:02:52 +00:00
parent 6539446a4f
commit d8a79b09b6
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2008-01-31 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
* plugins/autosave.c: Fixed a little typo
(Thanks to Jeff Bailes for reporting)
2008-01-31 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> 2008-01-31 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/keyfile.c: * src/keyfile.c:

View File

@ -138,7 +138,7 @@ void configure(GtkWidget *parent)
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5); gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
checkbox = gtk_check_button_new_with_label( checkbox = gtk_check_button_new_with_label(
_("Print status message if files have been automatcally saved")); _("Print status message if files have been automatically saved"));
gtk_button_set_focus_on_click(GTK_BUTTON(checkbox), FALSE); gtk_button_set_focus_on_click(GTK_BUTTON(checkbox), FALSE);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox), print_msg); gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbox), print_msg);
gtk_box_pack_start(GTK_BOX(vbox), checkbox, FALSE, FALSE, 5); gtk_box_pack_start(GTK_BOX(vbox), checkbox, FALSE, FALSE, 5);