diff options
author | Sebastian Geerken <devnull@localhost> | 2012-09-24 21:47:19 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2012-09-24 21:47:19 +0200 |
commit | b1ea92cce6ef995c429236f34e6164ead811ad9b (patch) | |
tree | 320da65ed9ed3cc7e8c01b4ac09b8f5ecf18ca98 /dw/findtext.cc | |
parent | b38df648b637a221bd6d9107de433cbe8107c276 (diff) |
Split up content type WIDGET; removed FLOAT_REF.
Diffstat (limited to 'dw/findtext.cc')
-rw-r--r-- | dw/findtext.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dw/findtext.cc b/dw/findtext.cc index 9793db91..9e9076dc 100644 --- a/dw/findtext.cc +++ b/dw/findtext.cc @@ -91,7 +91,7 @@ FindtextState::Result FindtextState::search (const char *key, bool caseSens, if (iterator) delete iterator; - iterator = new CharIterator (widget); + iterator = new CharIterator (widget, true); if (backwards) { /* Go to end */ @@ -123,7 +123,7 @@ FindtextState::Result FindtextState::search (const char *key, bool caseSens, } else { // Nothing found anymore, reset the state for the next trial. delete iterator; - iterator = new CharIterator (widget); + iterator = new CharIterator (widget, true); if (backwards) { /* Go to end */ while (iterator->next ()) ; |