diff widgets/InteractiveFileFinder.cpp @ 587:4806715f7a19

Seems to be a bad idea to use plain DEBUG symbol on OS/X (system wants it)
author Chris Cannam
date Tue, 14 Jun 2011 15:27:05 +0100
parents f4960f8ce798
children d632a1e87018
line wrap: on
line diff
--- a/widgets/InteractiveFileFinder.cpp	Tue Jun 14 14:48:29 2011 +0100
+++ b/widgets/InteractiveFileFinder.cpp	Tue Jun 14 15:27:05 2011 +0100
@@ -35,7 +35,7 @@
 InteractiveFileFinder::InteractiveFileFinder() :
     m_lastLocatedLocation("")
 {
-    DEBUG << "Registering interactive file finder" << endl;
+    SVDEBUG << "Registering interactive file finder" << endl;
     FileFinder::registerFileFinder(this);
 }
 
@@ -383,7 +383,7 @@
 {
     if (FileSource::canHandleScheme(location)) {
         if (FileSource(location).isAvailable()) {
-            DEBUG << "InteractiveFileFinder::find: ok, it's available... returning" << endl;
+            SVDEBUG << "InteractiveFileFinder::find: ok, it's available... returning" << endl;
             return location;
         }
     }
@@ -408,7 +408,7 @@
 {
     if (relativeTo == "") return "";
 
-    DEBUG << "Looking for \"" << location << "\" next to \""
+    SVDEBUG << "Looking for \"" << location << "\" next to \""
               << relativeTo << "\"..." << endl;
 
     QString fileName;