From 9871b4a1ff365f4e9d8fafbe156e7e88ab19566f Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 27 Dec 2017 00:49:34 +0100 Subject: [PATCH] movieplayer: add missing std Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/b0560efc31ba1ad174bce1c757c226f84251bdd9 Author: vanhofen Date: 2017-12-27 (Wed, 27 Dec 2017) Origin message was: ------------------ - movieplayer: add missing std ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- 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 60afeb12d..c60a862e4 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; }