# HG changeset patch # User Chris Cannam # Date 1232118743 0 # Node ID 57857a57a03a55e2f64705c19d4e3b46ad52a55f # Parent 3c5570e3d9c576636a3e499f5cc3df3536f37029 * fix some warnings, remove debug diff -r 3c5570e3d9c5 -r 57857a57a03a base/PropertyContainer.cpp --- a/base/PropertyContainer.cpp Thu Jan 15 18:20:40 2009 +0000 +++ b/base/PropertyContainer.cpp Fri Jan 16 15:12:23 2009 +0000 @@ -80,7 +80,7 @@ } void -PropertyContainer::setProperty(QString nameString, QString valueString) +PropertyContainer::setPropertyFuzzy(QString nameString, QString valueString) { PropertyName name; int value; diff -r 3c5570e3d9c5 -r 57857a57a03a base/PropertyContainer.h --- a/base/PropertyContainer.h Thu Jan 15 18:20:40 2009 +0000 +++ b/base/PropertyContainer.h Fri Jan 16 15:12:23 2009 +0000 @@ -139,7 +139,7 @@ * * The default implementation should work for most subclasses. */ - virtual void setProperty(QString nameString, QString valueString); + virtual void setPropertyFuzzy(QString nameString, QString valueString); /** * As above, but returning a command. diff -r 3c5570e3d9c5 -r 57857a57a03a data/fileio/FileSource.cpp --- a/data/fileio/FileSource.cpp Thu Jan 15 18:20:40 2009 +0000 +++ b/data/fileio/FileSource.cpp Fri Jan 16 15:12:23 2009 +0000 @@ -30,7 +30,7 @@ #include #include -#define DEBUG_FILE_SOURCE 1 +//#define DEBUG_FILE_SOURCE 1 int FileSource::m_count = 0;