summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoão Ricardo Lourenço <jorl17.8@gmail.com>2009-02-08 16:58:29 -0300
committerJoão Ricardo Lourenço <jorl17.8@gmail.com>2009-02-08 16:58:29 -0300
commit31d9389f4d4eed8d3eb4e6f77148fb6ec0c0a37f (patch)
tree72289bd30fb46650217daecb87c396e851e8dc7a /test
parent4e417d3988cff4143da06f438fcd39cb228ed1f9 (diff)
Implemented "search previous" in string searches
Diffstat (limited to 'test')
-rw-r--r--test/dw_find_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dw_find_test.cc b/test/dw_find_test.cc
index 651ca653..50f2d1aa 100644
--- a/test/dw_find_test.cc
+++ b/test/dw_find_test.cc
@@ -44,7 +44,7 @@ static ::fltk::Widget *resultLabel;
static void findCallback (::fltk::Widget *widget, void *data)
{
//switch(layout->search ("worm", true)) {
- switch(layout->search ("WORM", false)) {
+ switch(layout->search ("WORM", false, false)) {
case FindtextState::SUCCESS:
resultLabel->label("SUCCESS");
break;