Code Cleanup
- Obsoleted Filter.{h,cpp}.
- Obsoleted Sequence.{h,cpp}.
- Eliminated Context::autoFilter.
- Stubbed Expression::eval.
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user