From 20477198e68c8b2769f6ccd96e96782348d467af Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Thu, 14 May 2009 23:09:04 +0000 Subject: [PATCH] Const correctness in AssTime. Originally committed to SVN as r2929. --- aegisub/src/ass_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/ass_time.h b/aegisub/src/ass_time.h index d112f2e47..3e6bfaabb 100644 --- a/aegisub/src/ass_time.h +++ b/aegisub/src/ass_time.h @@ -61,7 +61,7 @@ public: int GetTimeMiliseconds(); int GetTimeCentiseconds(); - int GetMS(); // Returns miliseconds + int GetMS() const; // Returns miliseconds void SetMS(int ms); // Sets values to miliseconds void ParseASS(const wxString text); // Sets value to text-form time, in ASS format void ParseSRT(const wxString text); // Sets value to text-form time, in SRT format