summaryrefslogtreecommitdiffstats
path: root/juk/categoryreaderinterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'juk/categoryreaderinterface.h')
-rw-r--r--juk/categoryreaderinterface.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/juk/categoryreaderinterface.h b/juk/categoryreaderinterface.h
index 5d2dfd0f..2b037c1a 100644
--- a/juk/categoryreaderinterface.h
+++ b/juk/categoryreaderinterface.h
@@ -43,7 +43,7 @@ public:
* @param type, The category to retrieve the value of.
* @return textual representation of that category's value.
*/
- virtual QString categoryValue(TagType type) const = 0;
+ virtual TQString categoryValue(TagType type) const = 0;
/**
* Returns the user-specified prefix string for \p category.
@@ -51,7 +51,7 @@ public:
* @param category the category to retrieve the value for.
* @return user-specified prefix string for \p category.
*/
- virtual QString prefix(const CategoryID &category) const = 0;
+ virtual TQString prefix(const CategoryID &category) const = 0;
/**
* Returns the user-specified suffix string for \p category.
@@ -59,7 +59,7 @@ public:
* @param category the category to retrieve the value for.
* @return user-specified suffix string for \p category.
*/
- virtual QString suffix(const CategoryID &category) const = 0;
+ virtual TQString suffix(const CategoryID &category) const = 0;
/**
* Returns the user-specified empty action for \p category.
@@ -76,14 +76,14 @@ public:
* @param category the category to retrieve the value for.
* @return the user-specified empty text for \p category.
*/
- virtual QString emptyText(const CategoryID &category) const = 0;
+ virtual TQString emptyText(const CategoryID &category) const = 0;
/**
* @return the categories in the order the user has chosen. Categories may
* be repeated (which is why CategoryID has the categoryNumber value to
* disambiguate duplicates).
*/
- virtual QValueList<CategoryID> categoryOrder() const = 0;
+ virtual TQValueList<CategoryID> categoryOrder() const = 0;
/**
* @return track width for the Track item identified by categoryNum.
@@ -91,11 +91,11 @@ public:
virtual int trackWidth(unsigned categoryNum) const = 0;
// You probably shouldn't reimplement this
- virtual QString value(const CategoryID &category) const;
+ virtual TQString value(const CategoryID &category) const;
- virtual QString separator() const = 0;
+ virtual TQString separator() const = 0;
- virtual QString musicFolder() const = 0;
+ virtual TQString musicFolder() const = 0;
/**
* @param index the zero-based index of the item just before the
@@ -114,7 +114,7 @@ public:
virtual bool isEmpty(TagType category) const;
// You probably shouldn't reimplement this
- virtual QString fixupTrack(const QString &track, unsigned categoryNum) const;
+ virtual TQString fixupTrack(const TQString &track, unsigned categoryNum) const;
};
#endif /* JUK_CATEGORYREADERINTERFACE_H */