Changed tooltip of checkbox "Close dialog" to be more descriptive.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@952 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-11-01 15:53:48 +00:00
parent bf7dae9c6a
commit b5ed2b144d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-11-01 Enrico Tröger <enrico.troeger@uvena.de>
* src/search.c: Changed tooltip of checkbox "Close dialog" to be more
descriptive.
2006-11-01 Nick Treleaven <nick.treleaven@btinternet.com>
* src/document.c: Prevent possible invalid memory read.

View File

@ -323,7 +323,7 @@ void search_show_find_dialog()
gtk_widget_ref(check_close), (GDestroyNotify) gtk_widget_unref);
gtk_button_set_focus_on_click(GTK_BUTTON(check_close), FALSE);
gtk_tooltips_set_tip(tooltips, check_close,
_("The dialog window won't be closed when you start the operation."), NULL);
_("Disable this option to do not close this dialog."), NULL);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_close), TRUE);
gtk_container_add(GTK_CONTAINER(bbox), check_close);
gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(bbox), check_close, TRUE);
@ -458,7 +458,7 @@ void search_show_replace_dialog()
gtk_widget_ref(check_close), (GDestroyNotify) gtk_widget_unref);
gtk_button_set_focus_on_click(GTK_BUTTON(check_close), FALSE);
gtk_tooltips_set_tip(tooltips, check_close,
_("The dialog window won't be closed when you start the operation."), NULL);
_("Disable this option to do not close this dialog."), NULL);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(check_close), TRUE);
gtk_container_add(GTK_CONTAINER(bbox), check_close);
gtk_button_box_set_child_secondary(GTK_BUTTON_BOX(bbox), check_close, TRUE);