summaryrefslogtreecommitdiffstats
path: root/vcs/perforce/commitdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/perforce/commitdlg.h')
-rw-r--r--vcs/perforce/commitdlg.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/vcs/perforce/commitdlg.h b/vcs/perforce/commitdlg.h
index 390681fd..09a9c72f 100644
--- a/vcs/perforce/commitdlg.h
+++ b/vcs/perforce/commitdlg.h
@@ -13,8 +13,8 @@
#ifndef _COMMITDIALOG_H_
#define _COMMITDIALOG_H_
-#include <qstringlist.h>
-#include <qtextedit.h>
+#include <tqstringlist.h>
+#include <tqtextedit.h>
#include <klineedit.h>
#include <klistbox.h>
#include <kdialogbase.h>
@@ -25,17 +25,17 @@ class CommitDialog : public KDialogBase
{
Q_OBJECT
public:
- CommitDialog( QWidget *parent = 0, const char *name = 0 );
+ CommitDialog( TQWidget *parent = 0, const char *name = 0 );
~CommitDialog();
- QString logMessage() const { return edit->text(); }
- QString user() const { return userEdit->text(); }
- QString client() const { return clientEdit->text(); }
- QString changeList() const;
+ TQString logMessage() const { return edit->text(); }
+ TQString user() const { return userEdit->text(); }
+ TQString client() const { return clientEdit->text(); }
+ TQString changeList() const;
- void setUser( const QString& usr ) { userEdit->setText( usr ); }
- void setClient( const QString& clnt ) { clientEdit->setText( clnt ); }
- void setFiles( const QStringList& lst );
+ void setUser( const TQString& usr ) { userEdit->setText( usr ); }
+ void setClient( const TQString& clnt ) { clientEdit->setText( clnt ); }
+ void setFiles( const TQStringList& lst );
/** tries to fill out user and client */
void autoGuess();
@@ -44,11 +44,11 @@ protected slots:
void accept();
private slots:
- void getFilesFinished( const QString& out, const QString& err );
+ void getFilesFinished( const TQString& out, const TQString& err );
private:
- void setDepotFiles( const QStringList& lst );
- QTextEdit *edit;
+ void setDepotFiles( const TQStringList& lst );
+ TQTextEdit *edit;
KLineEdit *clientEdit, *userEdit;
KListBox *filesBox;
};