From b5ed2b144df2e1984bbc61ac2dfd69bfe07c0ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Wed, 1 Nov 2006 15:53:48 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++++ src/search.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 67ad1f99..613b92c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-11-01 Enrico Tröger + + * src/search.c: Changed tooltip of checkbox "Close dialog" to be more + descriptive. + + 2006-11-01 Nick Treleaven * src/document.c: Prevent possible invalid memory read. diff --git a/src/search.c b/src/search.c index 51e5467c..af0e2715 100644 --- a/src/search.c +++ b/src/search.c @@ -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);