summaryrefslogtreecommitdiffstats
path: root/kvoctrain/kvoctrain/kvtnewstuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'kvoctrain/kvoctrain/kvtnewstuff.h')
-rw-r--r--kvoctrain/kvoctrain/kvtnewstuff.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kvoctrain/kvoctrain/kvtnewstuff.h b/kvoctrain/kvoctrain/kvtnewstuff.h
index 9953ac1a..1649868a 100644
--- a/kvoctrain/kvoctrain/kvtnewstuff.h
+++ b/kvoctrain/kvoctrain/kvtnewstuff.h
@@ -19,11 +19,11 @@ class kvoctrainApp;
/**
@author Peter Hedlund
*/
-class KVTNewStuff : public QObject, public KNewStuff
+class KVTNewStuff : public TQObject, public KNewStuff
{
Q_OBJECT
public:
- KVTNewStuff(QWidget *parent = 0, const char *name = 0);
+ KVTNewStuff(TQWidget *parent = 0, const char *name = 0);
/**
Installs a downloaded file according to the application's configuration.
@@ -31,7 +31,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.
@@ -41,7 +41,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.
@@ -49,10 +49,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);
kvoctrainApp * m_app;
};