comparison data/fileio/PlaylistFileReader.cpp @ 686:b4a8d8221eaf debug-output

Remove most toStdString calls (no longer needed, with debug header)
author Chris Cannam
date Thu, 12 May 2011 17:31:24 +0100
parents 5746c559af15
children e802e550a1f2
comparison
equal deleted inserted replaced
685:99222d4bfc78 686:b4a8d8221eaf
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 std::cerr << "Path \"" << line.toStdString()
137 << "\" is relative, resolving to \"" 137 << "\" is relative, resolving to \""
138 << testpath.toStdString() << "\"" 138 << testpath << "\""
139 << std::endl; 139 << std::endl;
140 line = testpath; 140 line = testpath;
141 } 141 }
142 } 142 }
143 } 143 }