diff options
author | Sebastian Geerken <devnull@localhost> | 2013-04-18 14:56:51 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-04-18 14:56:51 +0200 |
commit | ac2616a2749d3b51a1c5a2d73e143a36d48222f7 (patch) | |
tree | 0665bd39ff03165701beeb608f348a6c9cda9120 /lout | |
parent | df2c456eac1c6f6f6d23942907606a89c26b0f97 (diff) |
Fixed limited floats search, and integrated it into textblock widget. (Still not fully working.)
Diffstat (limited to 'lout')
-rw-r--r-- | lout/container.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lout/container.cc b/lout/container.cc index 5f3be123..7197ba74 100644 --- a/lout/container.cc +++ b/lout/container.cc @@ -204,7 +204,7 @@ void Vector::sort(Comparator *comparator) * insertion; see insertSortet()). */ int Vector::bsearch(Object *key, bool mustExist, int start, int end, - Comparator *comparator) + Comparator *comparator) { // The case !mustExist is not handled by bsearch(3), so here is a // new implementation. |