summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/checkoutdialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/cvsservice/checkoutdialog.h')
-rw-r--r--vcs/cvsservice/checkoutdialog.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/vcs/cvsservice/checkoutdialog.h b/vcs/cvsservice/checkoutdialog.h
index 597a806a..a44ef397 100644
--- a/vcs/cvsservice/checkoutdialog.h
+++ b/vcs/cvsservice/checkoutdialog.h
@@ -31,7 +31,7 @@ class CheckoutDialog : public KDialogBase, virtual public CVSServiceDCOPIface
{
Q_OBJECT
public:
- CheckoutDialog( CvsService_stub *cvsService, QWidget *parent = 0,
+ CheckoutDialog( CvsService_stub *cvsService, TQWidget *parent = 0,
const char *name = 0, WFlags f = 0 );
virtual ~CheckoutDialog();
@@ -40,23 +40,23 @@ public:
/**
* @return a server path string (i.e. :pserver:marios@cvs.kde.org:/home/kde)
*/
- QString serverPath() const;
+ TQString serverPath() const;
/**
* @param serverPaths a list of server location to use when filling the widget
*/
- void fillServerPaths( const QStringList &serverPaths );
+ void fillServerPaths( const TQStringList &serverPaths );
/**
* @return the directory which the user has fetched the module in
*/
- QString workDir() const;
+ TQString workDir() const;
/**
* @param aDir directory which fetched modules will be put in (ending with '/')
*/
- void setWorkDir( const QString &aDir );
+ void setWorkDir( const TQString &aDir );
/**
* @return the module the user has chosen to check-out from repository
*/
- QString module() const;
+ TQString module() const;
/**
* @return
*/
@@ -64,15 +64,15 @@ public:
/**
* @return
*/
- QString tag() const;
+ TQString tag() const;
private slots:
- void slotModuleSelected( QListViewItem *item );
+ void slotModuleSelected( TQListViewItem *item );
void slotFetchModulesList();
// DCOP Iface
virtual void slotJobExited( bool normalExit, int exitStatus );
- virtual void slotReceivedOutput( QString someOutput );
- virtual void slotReceivedErrors( QString someErrors );
+ virtual void slotReceivedOutput( TQString someOutput );
+ virtual void slotReceivedErrors( TQString someErrors );
private:
/**