SF.net SVN: geany: [1314] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Feb 21 16:02:19 UTC 2007


Revision: 1314
          http://svn.sourceforge.net/geany/?rev=1314&view=rev
Author:   eht16
Date:     2007-02-21 08:02:19 -0800 (Wed, 21 Feb 2007)

Log Message:
-----------
Improved tooltip for auto completion.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/geany.glade
    trunk/src/interface.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/ChangeLog	2007-02-21 16:02:19 UTC (rev 1314)
@@ -4,6 +4,7 @@
    Made auto_close_bracket() static and auto close brackets only when
    auto completion of constructs is enabled (closes #1665015).
  * doc/geany.1.in: Fixed typo.
+ * geany.glade, src/interface.c: Improved tooltip for auto completion.
 
 
 2007-02-20  Nick Treleaven  <nick.treleaven at btinternet.com>

Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade	2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/geany.glade	2007-02-21 16:02:19 UTC (rev 1314)
@@ -5476,7 +5476,7 @@
 			  <child>
 			    <widget class="GtkCheckButton" id="check_symbol_auto_completion">
 			      <property name="visible">True</property>
-			      <property name="tooltip" translatable="yes">Automatic completion of known symbols in open source file(s) (function, global variables, ...)</property>
+			      <property name="tooltip" translatable="yes">Automatic completion of known symbols in open files (function names, global variables, ...)</property>
 			      <property name="can_focus">True</property>
 			      <property name="label" translatable="yes">Symbol autocompletion</property>
 			      <property name="use_underline">True</property>

Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c	2007-02-21 15:20:45 UTC (rev 1313)
+++ trunk/src/interface.c	2007-02-21 16:02:19 UTC (rev 1314)
@@ -3345,7 +3345,7 @@
   check_symbol_auto_completion = gtk_check_button_new_with_mnemonic (_("Symbol autocompletion"));
   gtk_widget_show (check_symbol_auto_completion);
   gtk_box_pack_start (GTK_BOX (vbox19), check_symbol_auto_completion, FALSE, FALSE, 0);
-  gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open source file(s) (function, global variables, ...)"), NULL);
+  gtk_tooltips_set_tip (tooltips, check_symbol_auto_completion, _("Automatic completion of known symbols in open files (function names, global variables, ...)"), NULL);
   gtk_button_set_focus_on_click (GTK_BUTTON (check_symbol_auto_completion), FALSE);
 
   hbox6 = gtk_hbox_new (FALSE, 20);


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