SF.net SVN: geany:[3799] trunk/src/search.c
eht16 at users.sourceforge.net
eht16 at xxxxx
Sun May 17 17:49:18 UTC 2009
Revision: 3799
http://geany.svn.sourceforge.net/geany/?rev=3799&view=rev
Author: eht16
Date: 2009-05-17 17:49:18 +0000 (Sun, 17 May 2009)
Log Message:
-----------
Remember also whether to use the extra grep options (got lost in the last commit, oops).
Modified Paths:
--------------
trunk/src/search.c
Modified: trunk/src/search.c
===================================================================
--- trunk/src/search.c 2009-05-17 17:16:39 UTC (rev 3798)
+++ trunk/src/search.c 2009-05-17 17:49:18 UTC (rev 3799)
@@ -87,8 +87,9 @@
gboolean fif_match_whole_word;
gboolean fif_invert_results;
gboolean fif_recursive;
+ gboolean fif_use_extra_options;
}
-settings = {0, NULL, FALSE, FALSE, FALSE, FALSE};
+settings = {0, NULL, FALSE, FALSE, FALSE, FALSE, FALSE};
static GeanyPrefGroup *fif_prefs = NULL;
@@ -183,6 +184,8 @@
"fif_invert_results", FALSE, "check_invert");
stash_group_add_toggle_button(group, &settings.fif_recursive,
"fif_recursive", FALSE, "check_recursive");
+ stash_group_add_toggle_button(group, &settings.fif_use_extra_options,
+ "fif_use_extra_options", FALSE, "check_extra");
}
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