aboutsummaryrefslogtreecommitdiff
path: root/lout/container.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2013-04-18 14:56:51 +0200
committerSebastian Geerken <devnull@localhost>2013-04-18 14:56:51 +0200
commitac2616a2749d3b51a1c5a2d73e143a36d48222f7 (patch)
tree0665bd39ff03165701beeb608f348a6c9cda9120 /lout/container.cc
parentdf2c456eac1c6f6f6d23942907606a89c26b0f97 (diff)
Fixed limited floats search, and integrated it into textblock widget. (Still not fully working.)
Diffstat (limited to 'lout/container.cc')
-rw-r--r--lout/container.cc2
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.