SF.net SVN: geany: [1452] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Sun Apr 15 16:13:57 UTC 2007


Revision: 1452
          http://svn.sourceforge.net/geany/?rev=1452&view=rev
Author:   ntrel
Date:     2007-04-15 09:13:57 -0700 (Sun, 15 Apr 2007)

Log Message:
-----------
Move 'Recurse in subfolders option' FIF option below the others.
Add tooltip for extra options entry.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/search.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2007-04-15 15:59:57 UTC (rev 1451)
+++ trunk/ChangeLog	2007-04-15 16:13:57 UTC (rev 1452)
@@ -9,6 +9,9 @@
    methods (and D functions) get parsed.
  * src/keyfile.c, src/search.c, src/search.h:
    Save FIF extra options string in the keyfile.
+ * src/search.c:
+   Move 'Recurse in subfolders' FIF option below the others.
+   Add tooltip for extra options entry.
 
 
 2007-04-13  Enrico Tröger  <enrico.troeger at uvena.de>

Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c	2007-04-15 15:59:57 UTC (rev 1451)
+++ trunk/src/search.c	2007-04-15 16:13:57 UTC (rev 1452)
@@ -661,10 +661,10 @@
 				_("Invert the sense of matching, to select non-matching lines."), NULL);
 
 		cbox = gtk_vbox_new(FALSE, 0);
-		gtk_container_add(GTK_CONTAINER(cbox), check_recursive);
 		gtk_container_add(GTK_CONTAINER(cbox), checkbox1);
 		gtk_container_add(GTK_CONTAINER(cbox), check_wholeword);
 		gtk_container_add(GTK_CONTAINER(cbox), checkbox2);
+		gtk_container_add(GTK_CONTAINER(cbox), check_recursive);
 
 		hbox = gtk_hbox_new(FALSE, 6);
 		gtk_container_add(GTK_CONTAINER(hbox), rbox);
@@ -686,6 +686,8 @@
 						gtk_widget_ref(entry_extra), (GDestroyNotify)gtk_widget_unref);
 		g_signal_connect(G_OBJECT(entry_extra), "key-press-event",
 			G_CALLBACK(on_entry_extra_key_press), check_extra);
+		gtk_tooltips_set_tip(tooltips, entry_extra,
+				_("Other options to pass to Grep"), NULL);
 
 		hbox = gtk_hbox_new(FALSE, 6);
 		gtk_box_pack_start(GTK_BOX(hbox), check_extra, FALSE, FALSE, 0);


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