From 153cfbcd5f0ea571ca4d637f84287738ef05203f Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Thu, 14 May 2009 23:27:38 +0000 Subject: [PATCH] More const correctness in AssTime, broke build because I forgot to add const keyword to implementation too. Originally committed to SVN as r2930. --- aegisub/src/ass_time.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/ass_time.cpp b/aegisub/src/ass_time.cpp index e7ef8ade7..f35f5a3a4 100644 --- a/aegisub/src/ass_time.cpp +++ b/aegisub/src/ass_time.cpp @@ -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; }