diff 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
line wrap: on
line diff
--- a/data/fileio/PlaylistFileReader.cpp	Tue Nov 26 11:16:37 2013 +0000
+++ b/data/fileio/PlaylistFileReader.cpp	Tue Nov 26 13:35:08 2013 +0000
@@ -133,10 +133,10 @@
                     QString testpath = QDir(m_basedir).filePath(line);
                     if (QFileInfo(testpath).exists() &&
                         QFileInfo(testpath).isFile()) {
-                        std::cerr << "Path \"" << line.toStdString()
+                        cerr << "Path \"" << line.toStdString()
                                   << "\" is relative, resolving to \""
                                   << testpath << "\""
-                                  << std::endl;
+                                  << endl;
                         line = testpath;
                     }
                 }