summaryrefslogtreecommitdiffstats
path: root/src/sound/PluginIdentifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sound/PluginIdentifier.h')
-rw-r--r--src/sound/PluginIdentifier.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/sound/PluginIdentifier.h b/src/sound/PluginIdentifier.h
index e8519ad..efb280c 100644
--- a/src/sound/PluginIdentifier.h
+++ b/src/sound/PluginIdentifier.h
@@ -22,7 +22,7 @@
#ifndef _PLUGIN_IDENTIFIER_H_
#define _PLUGIN_IDENTIFIER_H_
-#include <qstring.h>
+#include <tqstring.h>
// A plugin identifier is simply a string; this class provides methods
@@ -34,15 +34,15 @@ class PluginIdentifier {
public:
- static QString createIdentifier(QString type, QString soName, QString label);
+ static TQString createIdentifier(TQString type, TQString soName, TQString label);
- static void parseIdentifier(QString identifier,
- QString &type, QString &soName, QString &label);
+ static void parseIdentifier(TQString identifier,
+ TQString &type, TQString &soName, TQString &label);
- static bool areIdentifiersSimilar(QString id1, QString id2);
+ static bool areIdentifiersSimilar(TQString id1, TQString id2);
// Not strictly related to identifiers
- static QString RESERVED_PROJECT_DIRECTORY_KEY;
+ static TQString RESERVED_PROJECT_DIRECTORY_KEY;
};
}