diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/general/PresetGroup.h | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/gui/general/PresetGroup.h')
-rw-r--r-- | src/gui/general/PresetGroup.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/gui/general/PresetGroup.h b/src/gui/general/PresetGroup.h index 476a878..5397838 100644 --- a/src/gui/general/PresetGroup.h +++ b/src/gui/general/PresetGroup.h @@ -31,12 +31,12 @@ #include "base/Exception.h" #include "CategoryElement.h" -#include <qstring.h> -#include <qxml.h> +#include <tqstring.h> +#include <tqxml.h> -class QXmlParseException; -class QXmlAttributes; +class TQXmlParseException; +class TQXmlAttributes; namespace Rosegarden @@ -59,14 +59,14 @@ public: // Xml handler methods: - virtual bool startElement (const QString& namespaceURI, const QString& localName, - const QString& qName, const QXmlAttributes& atts); + virtual bool startElement (const TQString& namespaceURI, const TQString& localName, + const TQString& qName, const TQXmlAttributes& atts); - bool error(const QXmlParseException& exception); - bool fatalError(const QXmlParseException& exception); + bool error(const TQXmlParseException& exception); + bool fatalError(const TQXmlParseException& exception); // I don't think I have anything to do with this, but it must return true? -// bool characters(const QString &) { return true; } +// bool characters(const TQString &) { return true; } private: @@ -74,11 +74,11 @@ private: CategoriesContainer m_categories; // For use when reading the XML file: - QString m_errorString; - QString m_presetDirectory; + TQString m_errorString; + TQString m_presetDirectory; - QString m_elCategoryName; - QString m_elInstrumentName; + TQString m_elCategoryName; + TQString m_elInstrumentName; int m_elClef; int m_elTranspose; int m_elLowAm; |