Mercurial > hg > svapp
diff framework/MainWindowBase.cpp @ 228:67cea66bd588 debug-output
Remove most toStdString calls (no longer needed, with debug header)
author | Chris Cannam |
---|---|
date | Thu, 12 May 2011 17:31:56 +0100 |
parents | 85e59c901de9 |
children | 8c13e8219903 |
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp Thu Apr 14 15:21:41 2011 +0100 +++ b/framework/MainWindowBase.cpp Thu May 12 17:31:56 2011 +0100 @@ -1073,7 +1073,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openAudio(FileSource source, AudioFileOpenMode mode, QString templateName) { -// std::cerr << "MainWindowBase::openAudio(" << source.getLocation().toStdString() << ")" << std::endl; +// std::cerr << "MainWindowBase::openAudio(" << source.getLocation() << ")" << std::endl; if (!source.isAvailable()) return FileOpenFailed; source.waitForData(); @@ -1158,7 +1158,7 @@ bool loadedTemplate = false; if ((mode == ReplaceMainModel) && (templateName.length() != 0)) { QString tplPath = "file::templates/" + templateName + ".xml"; - std::cerr << "SV looking for template " << tplPath.toStdString() << std::endl; + std::cerr << "SV looking for template " << tplPath << std::endl; FileOpenStatus tplStatus = openSessionFile(tplPath); if(tplStatus != FileOpenFailed) { loadedTemplate = true; @@ -1280,7 +1280,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openPlaylist(FileSource source, AudioFileOpenMode mode) { - std::cerr << "MainWindowBase::openPlaylist(" << source.getLocation().toStdString() << ")" << std::endl; + std::cerr << "MainWindowBase::openPlaylist(" << source.getLocation() << ")" << std::endl; std::set<QString> extensions; PlaylistFileReader::getSupportedExtensions(extensions); @@ -1321,7 +1321,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openLayer(FileSource source) { - std::cerr << "MainWindowBase::openLayer(" << source.getLocation().toStdString() << ")" << std::endl; + std::cerr << "MainWindowBase::openLayer(" << source.getLocation() << ")" << std::endl; Pane *pane = m_paneStack->getCurrentPane(); @@ -1382,7 +1382,7 @@ std::cerr << "ERROR: MainWindowBase::openLayer(" << source.getLocation().toStdString() << "): Failed to read XML file: " - << reader.getErrorString().toStdString() << std::endl; + << reader.getErrorString() << std::endl; return FileOpenFailed; } @@ -1453,7 +1453,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openImage(FileSource source) { - std::cerr << "MainWindowBase::openImage(" << source.getLocation().toStdString() << ")" << std::endl; + std::cerr << "MainWindowBase::openImage(" << source.getLocation() << ")" << std::endl; Pane *pane = m_paneStack->getCurrentPane(); @@ -1485,7 +1485,7 @@ // We don't put the image file in Recent Files - std::cerr << "openImage: trying location \"" << source.getLocation().toStdString() << "\" in image layer" << std::endl; + std::cerr << "openImage: trying location \"" << source.getLocation() << "\" in image layer" << std::endl; if (!il->addImage(m_viewManager->getGlobalCentreFrame(), source.getLocation())) { if (newLayer) { @@ -1513,7 +1513,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openSession(FileSource source) { - std::cerr << "MainWindowBase::openSession(" << source.getLocation().toStdString() << ")" << std::endl; + std::cerr << "MainWindowBase::openSession(" << source.getLocation() << ")" << std::endl; if (!source.isAvailable()) return FileOpenFailed; source.waitForData(); @@ -1633,7 +1633,7 @@ MainWindowBase::FileOpenStatus MainWindowBase::openSessionFromRDF(FileSource source) { - std::cerr << "MainWindowBase::openSessionFromRDF(" << source.getLocation().toStdString() << ")" << std::endl; + std::cerr << "MainWindowBase::openSessionFromRDF(" << source.getLocation() << ")" << std::endl; if (!source.isAvailable()) return FileOpenFailed; source.waitForData(); @@ -1901,7 +1901,7 @@ std::cerr << "Failed to open session file \"" << temp.getTemporaryFilename().toStdString() << "\" for writing: " - << bzFile.errorString().toStdString() << std::endl; + << bzFile.errorString() << std::endl; return false; }