summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/kwqnewstuff.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kwordquiz/src/kwqnewstuff.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kwordquiz/src/kwqnewstuff.h')
-rw-r--r--kwordquiz/src/kwqnewstuff.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kwordquiz/src/kwqnewstuff.h b/kwordquiz/src/kwqnewstuff.h
index eb91044a..f3ae82c1 100644
--- a/kwordquiz/src/kwqnewstuff.h
+++ b/kwordquiz/src/kwqnewstuff.h
@@ -25,11 +25,11 @@ class KWordQuizApp;
/**
@author Peter Hedlund
*/
-class KWQNewStuff : public QObject, public KNewStuff
+class KWQNewStuff : public TQObject, public KNewStuff
{
Q_OBJECT
public:
- KWQNewStuff(QWidget *parent = 0, const char *name = 0);
+ KWQNewStuff(TQWidget *parent = 0, const char *name = 0);
/**
Installs a downloaded file according to the application's configuration.
@@ -37,7 +37,7 @@ public:
@param fileName filename of the donwloaded file
@return @c true in case of installation success, @c false otherwise
*/
- bool install(const QString &fileName);
+ bool install(const TQString &fileName);
/**
Creates a file suitable for upload.
@@ -47,7 +47,7 @@ public:
@param fileName the name of the file to upload after its creation
@return @c true in case of creation success, @c false otherwise
*/
- bool createUploadFile(const QString &fileName);
+ bool createUploadFile(const TQString &fileName);
/**
Queries the preferred destination file for a download.
@@ -55,10 +55,10 @@ public:
@param entry a Hotstuff data entry
@return destination filename, or 0 to return directory only
*/
- QString downloadDestination(KNS::Entry *entry);
+ TQString downloadDestination(KNS::Entry *entry);
private:
- QString destinationPath(KNS::Entry *entry);
+ TQString destinationPath(KNS::Entry *entry);
KWordQuizApp * m_app;
};