comparison data/fileio/PlaylistFileReader.cpp @ 843:e802e550a1f2

Drop std:: from cout, cerr, endl -- pull these in through Debug.h
author Chris Cannam
date Tue, 26 Nov 2013 13:35:08 +0000
parents b4a8d8221eaf
children f5cd33909744
comparison
equal deleted inserted replaced
842:23d3a6eca5c3 843:e802e550a1f2
131 if (!FileSource::isRemote(line)) { 131 if (!FileSource::isRemote(line)) {
132 if (QFileInfo(line).isRelative() && m_basedir != "") { 132 if (QFileInfo(line).isRelative() && m_basedir != "") {
133 QString testpath = QDir(m_basedir).filePath(line); 133 QString testpath = QDir(m_basedir).filePath(line);
134 if (QFileInfo(testpath).exists() && 134 if (QFileInfo(testpath).exists() &&
135 QFileInfo(testpath).isFile()) { 135 QFileInfo(testpath).isFile()) {
136 std::cerr << "Path \"" << line.toStdString() 136 cerr << "Path \"" << line.toStdString()
137 << "\" is relative, resolving to \"" 137 << "\" is relative, resolving to \""
138 << testpath << "\"" 138 << testpath << "\""
139 << std::endl; 139 << endl;
140 line = testpath; 140 line = testpath;
141 } 141 }
142 } 142 }
143 } 143 }
144 144