summaryrefslogtreecommitdiffstats
path: root/quanta/project/uploadprofiles.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/project/uploadprofiles.h')
-rw-r--r--quanta/project/uploadprofiles.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/quanta/project/uploadprofiles.h b/quanta/project/uploadprofiles.h
index 20d77b80..b04c376d 100644
--- a/quanta/project/uploadprofiles.h
+++ b/quanta/project/uploadprofiles.h
@@ -14,9 +14,9 @@
#define UPLOADPROFILES_H
// QT includes
-#include <qmap.h>
-#include <qdom.h>
-#include <qguardedptr.h>
+#include <tqmap.h>
+#include <tqdom.h>
+#include <tqguardedptr.h>
// KDE includes
#include <kurl.h>
@@ -32,13 +32,13 @@ class QObject;
struct UploadProfile
{
- QString name; ///< name of profile
- QDomElement domElement; ///< domtree element of this profile
- QGuardedPtr<QWidget> treeview; ///< treeview for this url
+ TQString name; ///< name of profile
+ TQDomElement domElement; ///< domtree element of this profile
+ TQGuardedPtr<TQWidget> treeview; ///< treeview for this url
};
/** a map for the upload profiles */
-typedef QMap<QString, UploadProfile> UploadProfileMap;
+typedef TQMap<TQString, UploadProfile> UploadProfileMap;
class UploadProfiles : public UploadProfileMap
@@ -61,7 +61,7 @@ public:
@param the dom document to parse
*/
- void readFromXML(const QDomDocument &dom);
+ void readFromXML(const TQDomDocument &dom);
/**
removes a profile from the map and the dom tree
@@ -70,7 +70,7 @@ public:
@return true if profile was found and removed
*/
- bool removeFromMapAndXML(const QString &name);
+ bool removeFromMapAndXML(const TQString &name);
/**
clears the map and removes all treeviews
@@ -91,18 +91,18 @@ private:
@return the pointer to the treeview
*/
- QWidget * createTreeview(const UploadProfile &profile);
+ TQWidget * createTreeview(const UploadProfile &profile);
/**
creates a KURL from a QDomElement
- @param e a QDomElement where the path is saved
+ @param e a TQDomElement where the path is saved
@return KURL of the location
*/
- KURL url(const QDomElement &e);
+ KURL url(const TQDomElement &e);
- QDomNode m_profilesNode; ///< under this node the profiles are saved in the dom tree
+ TQDomNode m_profilesNode; ///< under this node the profiles are saved in the dom tree
};
#endif