- movieplayer: add missing std

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2017-12-27 00:49:34 +01:00
committed by Thilo Graf
parent a470eb7167
commit b4b9ea5842

View File

@@ -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;
}