Minor clean up: msvc warnings/include order/comment text.

Change-Id: I2b54abcb9f535715d8713930942447c0b0f5f862
This commit is contained in:
Tom Finegan
2014-01-22 14:03:40 -08:00
parent 796c90798a
commit 327e8ab617
4 changed files with 13 additions and 11 deletions

View File

@@ -686,8 +686,8 @@ Time& Time::presentation(presentation_t d) {
return *this;
}
seconds = d / 1000;
milliseconds = d - 1000 * seconds;
seconds = static_cast<int>(d / 1000);
milliseconds = static_cast<int>(d - 1000 * seconds);
minutes = seconds / 60;
seconds -= 60 * minutes;