Code Cleanup

- Obsoleted Filter.{h,cpp}.
- Obsoleted Sequence.{h,cpp}.
- Eliminated Context::autoFilter.
- Stubbed Expression::eval.
This commit is contained in:
Paul Beckingham 2011-06-15 23:45:50 -04:00
parent 6b85669812
commit f971fcd110
28 changed files with 148 additions and 616 deletions

View file

@ -343,13 +343,12 @@ Variant& Variant::operator- (const Variant& other)
break;
case v_date:
// TODO operator-= only takes integers.
//mDate -= other.mDate;
mDuration = Duration (mDate - other.mDate);
mType = v_duration;
break;
case v_duration:
// TODO Missing operator -=
//mDuration -= other.mDuration;
mDuration = mDuration - other.mDuration;
break;
case v_unknown: