summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/oblique/selector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/oblique/selector.cpp')
-rw-r--r--noatun-plugins/oblique/selector.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/noatun-plugins/oblique/selector.cpp b/noatun-plugins/oblique/selector.cpp
index 1c17650..f28c333 100644
--- a/noatun-plugins/oblique/selector.cpp
+++ b/noatun-plugins/oblique/selector.cpp
@@ -14,7 +14,7 @@ Item::Item(const File &file)
}
-QString Item::property(const QString &key, const QString &def) const
+TQString Item::property(const TQString &key, const TQString &def) const
{
if (key == "url")
{
@@ -23,27 +23,27 @@ QString Item::property(const QString &key, const QString &def) const
return url.url();
}
- QString str = mFile.property(key);
+ TQString str = mFile.property(key);
if (str.isNull()) return def;
return str;
}
-void Item::setProperty(const QString &key, const QString &property)
+void Item::setProperty(const TQString &key, const TQString &property)
{
mFile.setProperty(key, property);
}
-void Item::clearProperty(const QString &key)
+void Item::clearProperty(const TQString &key)
{
mFile.clearProperty(key);
}
-QStringList Item::properties() const
+TQStringList Item::properties() const
{
return mFile.properties();
}
-bool Item::isProperty(const QString &key) const
+bool Item::isProperty(const TQString &key) const
{
return !mFile.property(key).isNull();
}