diff options
author | Sebastian Geerken <devnull@localhost> | 2013-03-05 11:34:03 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-03-05 11:34:03 +0100 |
commit | 9c98b3c16041ebd41aabbb82e71d424a940a1d47 (patch) | |
tree | 496d8b2648a5ad072a2d78b932a4129e7d3dd12d /dw/table.cc | |
parent | 49ad0b5252190ffbfb4511131af2032f7f341a60 (diff) |
Comparable is now subclass of Object (not pseudo-interface anymore). The old solution would have made RTTI neccessary to work correctly.
Diffstat (limited to 'dw/table.cc')
-rw-r--r-- | dw/table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/table.cc b/dw/table.cc index 39cfee73..defc4259 100644 --- a/dw/table.cc +++ b/dw/table.cc @@ -1114,7 +1114,7 @@ object::Object *Table::TableIterator::clone() return new TableIterator ((Table*)getWidget(), getMask(), index); } -int Table::TableIterator::compareTo(misc::Comparable *other) +int Table::TableIterator::compareTo(object::Comparable *other) { return index - ((TableIterator*)other)->index; } |