summaryrefslogtreecommitdiffstats
path: root/subtitleparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'subtitleparser.cpp')
-rw-r--r--subtitleparser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/subtitleparser.cpp b/subtitleparser.cpp
index 0942eda..cca19b9 100644
--- a/subtitleparser.cpp
+++ b/subtitleparser.cpp
@@ -76,10 +76,10 @@ quint64 SubtitleParser::parseTime(QString time)
if (secs.length() != 2)
return 0;
return
- split[0].toULongLong() * 60 * 60 * 1000 +
- split[1].toULongLong() * 60 * 1000 +
- secs[0].toULongLong() * 1000 +
- secs[1].toULongLong();
+ split[0].toULongLong() * 60 * 60 * 1000 +
+ split[1].toULongLong() * 60 * 1000 +
+ secs[0].toULongLong() * 1000 +
+ secs[1].toULongLong();
}
QString SubtitleParser::fileName() const
{