From b4b9ea584283d4c59b740bac6c8a7476f0da9f17 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Wed, 27 Dec 2017 00:49:34 +0100 Subject: [PATCH] - movieplayer: add missing std Signed-off-by: Thilo Graf --- src/gui/movieplayer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/movieplayer.cpp b/src/gui/movieplayer.cpp index ab6928c72..593f12f8d 100644 --- a/src/gui/movieplayer.cpp +++ b/src/gui/movieplayer.cpp @@ -3092,7 +3092,7 @@ void CMoviePlayerGui::showSubtitle(neutrino_msg_data_t data) size_t start = 0, end = 0; /* split string with \N as newline */ std::string delim("\\N"); - while ((end = str.find(delim, start)) != string::npos) { + while ((end = str.find(delim, start)) != std::string::npos) { subtext.push_back(str.substr(start, end - start)); start = end + 2; }