diff options
Diffstat (limited to 'quanta/project/projectupload.h')
-rw-r--r-- | quanta/project/projectupload.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/quanta/project/projectupload.h b/quanta/project/projectupload.h index 375898ec..d76d1767 100644 --- a/quanta/project/projectupload.h +++ b/quanta/project/projectupload.h @@ -21,9 +21,9 @@ #include "projectuploads.h" #include "project.h" -#include <qdom.h> -#include <qptrlist.h> -#include <qstringlist.h> +#include <tqdom.h> +#include <tqptrlist.h> +#include <tqstringlist.h> #include <kio/job.h> @@ -44,9 +44,9 @@ public: If quickUpload is true, the upload starts immediately without checking for modifications or confirmation from the user. The url will be uploaded to the default profile */ - ProjectUpload(const KURL& url, const QString& profileName = QString::null, bool showOnlyProfiles = false, bool quickUpload = false, bool markOnly = false, const char * name = 0); + ProjectUpload(const KURL& url, const TQString& profileName = TQString::null, bool showOnlyProfiles = false, bool quickUpload = false, bool markOnly = false, const char * name = 0); ~ProjectUpload(); - QString defaultProfile(); + TQString defaultProfile(); public slots: // Public slots /** No descriptions */ @@ -57,7 +57,7 @@ protected slots: void upload(); void uploadFinished( KIO::Job *job ); void uploadProgress ( KIO::Job *job, unsigned long percent ); - void uploadMessage ( KIO::Job *, const QString & msg ); + void uploadMessage ( KIO::Job *, const TQString & msg ); void slotUploadNext(); void clearSelection(); @@ -71,16 +71,16 @@ protected slots: void slotNewProfile(); void slotEditProfile(); void slotRemoveProfile(); - void slotNewProfileSelected(const QString &profileName); + void slotNewProfileSelected(const TQString &profileName); - virtual void resizeEvent( QResizeEvent * ); + virtual void resizeEvent( TQResizeEvent * ); virtual void reject(); signals: // Signals /** No descriptions */ void uploadNext(); - void eventHappened(const QString&, const QString&, const QString&); + void eventHappened(const TQString&, const TQString&, const TQString&); private: void buildSelectedItemList(); @@ -89,13 +89,13 @@ private: void setProfileTooltip(); void loadRemoteUploadInfo(); void saveRemoteUploadInfo(); - void initProjectInfo(const QString& defaultProfile); + void initProjectInfo(const TQString& defaultProfile); void initBaseUrl(); /// Reads the current profile setting and initialize the baseUrl from it KURL::List modified; // modified files - QValueList<QListViewItem*> needsConfirmation; - QPtrList<QListViewItem> toUpload; // list of files , still didn't uploaded - QListViewItem *currentItem; + TQValueList<TQListViewItem*> needsConfirmation; + TQPtrList<TQListViewItem> toUpload; // list of files , still didn't uploaded + TQListViewItem *currentItem; KURL currentURL; KURL::List madeDirs; KURL *baseUrl; @@ -103,14 +103,14 @@ private: bool stopUpload; bool uploadInProgress; bool suspendUpload; - QString m_lastPassword; + TQString m_lastPassword; Project *m_project; - QString m_defaultProfile; - QDomElement m_currentProfileElement; - QDomElement m_lastEditedProfileElement; - QDomNode m_profilesNode; - QDomDocument m_uploadStatusDom; - QMap<QString, int> m_uploadTimeList; + TQString m_defaultProfile; + TQDomElement m_currentProfileElement; + TQDomElement m_lastEditedProfileElement; + TQDomNode m_profilesNode; + TQDomDocument m_uploadStatusDom; + TQMap<TQString, int> m_uploadTimeList; bool m_profilesOnly; bool m_quickUpload; }; |