More const correctness in AssTime, broke build because I forgot to add const keyword to implementation too.

Originally committed to SVN as r2930.
This commit is contained in:
Niels Martin Hansen 2009-05-14 23:27:38 +00:00
parent 3977fff411
commit fb6280b2e7
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ void AssTime::ParseSRT (const wxString _text) {
//////////////////////////////////////////
// AssTime conversion to/from miliseconds
int AssTime::GetMS () {
int AssTime::GetMS () const {
if (!UseMSPrecision) return time/10*10;
else return time;
}