Add wxDateTime::DiffAsDateSpan().

This method returns the difference between the dates as wxDateSpan, unlike the
existing Subtract() and overloaded operator-() that return wxTimeSpan.

Closes #14704.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-10-01 09:55:05 +00:00
parent 1f4bb1d7f2
commit 77dd7daad2
6 changed files with 65 additions and 0 deletions

View File

@@ -1212,6 +1212,7 @@ void DateTimeTestCase::TestTimeArithmetics()
CPPUNIT_ASSERT_EQUAL( dt, dt1 - span );
CPPUNIT_ASSERT_EQUAL( dt, dt2 + span );
CPPUNIT_ASSERT_EQUAL( dt1, dt2 + 2*span );
CPPUNIT_ASSERT_EQUAL( span, dt1.DiffAsDateSpan(dt) );
}
}