From 2a0054b97cfa1e434e83016b6c1d5a2fb555956f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 10 Oct 2014 12:53:06 +0300 Subject: Initializer list order fixes. Found with cppcheck (inconclusive enabled). --- src/Subtitles/DVBSub.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/Subtitles/DVBSub.h') diff --git a/src/Subtitles/DVBSub.h b/src/Subtitles/DVBSub.h index e000801a7..bbfba28d9 100644 --- a/src/Subtitles/DVBSub.h +++ b/src/Subtitles/DVBSub.h @@ -199,12 +199,12 @@ private: bool rendered; DVB_PAGE() - : pageTimeOut(0) + : rtStart(0) + , rtStop(0) + , pageTimeOut(0) , pageVersionNumber(0) , pageState(0) - , rendered(false) - , rtStart(0) - , rtStop(0) { + , rendered(false) { } }; -- cgit v1.2.3