diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:22:56 +0000 |
commit | 7346aee26bf190a7e70333c40fab4caca847cd27 (patch) | |
tree | 4b019b434f88dcc3eeaafe1d3f26240b4c4718e8 /noatun-plugins/oblique/oblique.h | |
parent | 23a3d3aa5b44cbdf305495919866d9dbf4f6da54 (diff) | |
download | tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.tar.gz tdeaddons-7346aee26bf190a7e70333c40fab4caca847cd27.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaddons@1157634 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun-plugins/oblique/oblique.h')
-rw-r--r-- | noatun-plugins/oblique/oblique.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/oblique/oblique.h b/noatun-plugins/oblique/oblique.h index 93d1e18..f7e6bc8 100644 --- a/noatun-plugins/oblique/oblique.h +++ b/noatun-plugins/oblique/oblique.h @@ -40,21 +40,21 @@ public: Base *base() { return mBase; } - QStringList schemaNames() const { return mSchemaCollection.names(); } - QString loadSchema(Query &q, const QString &name) + TQStringList schemaNames() const { return mSchemaCollection.names(); } + TQString loadSchema(Query &q, const TQString &name) { - QString t = q.load(mSchemaCollection.file(name)); + TQString t = q.load(mSchemaCollection.file(name)); if (t.length()) q.setName(name); return t; } - void saveSchema(Query &q, const QString &name, const QString &title) + void saveSchema(Query &q, const TQString &name, const TQString &title) { q.save(title, mSchemaCollection.saveFile(name)); } - void removeSchema(const QString &name) + void removeSchema(const TQString &name) { mSchemaCollection.remove(name); } |