summaryrefslogtreecommitdiffstats
path: root/vcs/clearcase
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/clearcase')
-rw-r--r--vcs/clearcase/clearcasefileinfoprovider.cpp4
-rw-r--r--vcs/clearcase/clearcasemanipulator.cpp2
-rw-r--r--vcs/clearcase/clearcasemanipulator.h2
-rw-r--r--vcs/clearcase/clearcasepart.cpp30
-rw-r--r--vcs/clearcase/commentdlg.cpp4
-rw-r--r--vcs/clearcase/commentdlg.h4
6 files changed, 23 insertions, 23 deletions
diff --git a/vcs/clearcase/clearcasefileinfoprovider.cpp b/vcs/clearcase/clearcasefileinfoprovider.cpp
index 1e18f8e1..aa311518 100644
--- a/vcs/clearcase/clearcasefileinfoprovider.cpp
+++ b/vcs/clearcase/clearcasefileinfoprovider.cpp
@@ -13,7 +13,7 @@
#include "clearcasepart.h"
#include "kdevversioncontrol.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqapplication.h>
ClearcaseFileinfoProvider::ClearcaseFileinfoProvider(ClearcasePart *parent)
@@ -21,7 +21,7 @@ ClearcaseFileinfoProvider::ClearcaseFileinfoProvider(ClearcasePart *parent)
{
vcsInfo_ = NULL;
- connect(parent, TQT_SIGNAL(statusReady(const VCSFileInfoMap&, void*)), TQT_SIGNAL(triggerUpdate(const VCSFileInfoMap&, void*)));
+ connect(parent, TQ_SIGNAL(statusReady(const VCSFileInfoMap&, void*)), TQ_SIGNAL(triggerUpdate(const VCSFileInfoMap&, void*)));
kdevVCS_ = parent;
}
diff --git a/vcs/clearcase/clearcasemanipulator.cpp b/vcs/clearcase/clearcasemanipulator.cpp
index 65f05c4e..54ad4faf 100644
--- a/vcs/clearcase/clearcasemanipulator.cpp
+++ b/vcs/clearcase/clearcasemanipulator.cpp
@@ -12,7 +12,7 @@
#include "config.h"
#include "clearcasemanipulator.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqregexp.h>
#include <tqstring.h>
diff --git a/vcs/clearcase/clearcasemanipulator.h b/vcs/clearcase/clearcasemanipulator.h
index 0cb795e3..276938f8 100644
--- a/vcs/clearcase/clearcasemanipulator.h
+++ b/vcs/clearcase/clearcasemanipulator.h
@@ -14,7 +14,7 @@
#include "kdevversioncontrol.h"
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tqregexp.h>
diff --git a/vcs/clearcase/clearcasepart.cpp b/vcs/clearcase/clearcasepart.cpp
index 8f05fbad..a8769127 100644
--- a/vcs/clearcase/clearcasepart.cpp
+++ b/vcs/clearcase/clearcasepart.cpp
@@ -19,7 +19,7 @@
#include <kdebug.h>
#include <kdevgenericfactory.h>
#include <tdelocale.h>
-#include <kprocess.h>
+#include <tdeprocess.h>
#include <tdemessagebox.h>
#include <tdeapplication.h>
@@ -60,8 +60,8 @@ ClearcasePart::ClearcasePart( TQObject *parent, const char *name, const TQString
fileInfoProvider_ = new ClearcaseFileinfoProvider(this);
setInstance(ClearcaseFactory::instance());
- connect( core(), TQT_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
- this, TQT_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
+ connect( core(), TQ_SIGNAL(contextMenu(TQPopupMenu *, const Context *)),
+ this, TQ_SLOT(contextMenu(TQPopupMenu *, const Context *)) );
}
ClearcasePart::~ClearcasePart()
@@ -88,26 +88,26 @@ void ClearcasePart::contextMenu(TQPopupMenu *popup, const Context *context)
TQString name = fi.fileName();
sub->insertTitle( i18n("Actions for %1").arg(name) );
sub->insertItem( i18n("Checkin"),
- this, TQT_SLOT(slotCheckin()) );
+ this, TQ_SLOT(slotCheckin()) );
sub->insertItem( i18n("Checkout"),
- this, TQT_SLOT(slotCheckout()) );
+ this, TQ_SLOT(slotCheckout()) );
sub->insertItem( i18n("Uncheckout"),
- this, TQT_SLOT(slotUncheckout()) );
+ this, TQ_SLOT(slotUncheckout()) );
sub->insertSeparator();
sub->insertItem( i18n("Create Element"),
- this, TQT_SLOT(slotCreate()) );
+ this, TQ_SLOT(slotCreate()) );
sub->insertItem( i18n("Remove Element"),
- this, TQT_SLOT(slotRemove()) );
+ this, TQ_SLOT(slotRemove()) );
sub->insertSeparator();
sub->insertItem( i18n("History"),
- this, TQT_SLOT(slotListHistory()) );
+ this, TQ_SLOT(slotListHistory()) );
sub->insertSeparator();
sub->insertItem( i18n("Diff"),
- this, TQT_SLOT(slotDiff()) );
+ this, TQ_SLOT(slotDiff()) );
sub->insertSeparator();
sub->insertItem( i18n("List Checkouts"),
- this, TQT_SLOT(slotListCheckouts()) );
+ this, TQ_SLOT(slotListCheckouts()) );
popup->insertItem(i18n("Clearcase"), sub);
@@ -125,7 +125,7 @@ void ClearcasePart::slotCheckin()
dir = fi.dirPath();
name = fi.fileName();
- CcaseCommentDlg dlg(FALSE);
+ CcaseCommentDlg dlg(false);
if (dlg.exec() == TQDialog::Rejected)
return;
@@ -156,7 +156,7 @@ void ClearcasePart::slotCheckout()
dir = fi.dirPath();
name = fi.fileName();
- CcaseCommentDlg dlg(TRUE);
+ CcaseCommentDlg dlg(true);
if (dlg.exec() == TQDialog::Rejected)
return;
@@ -304,8 +304,8 @@ void ClearcasePart::slotDiff()
args << name;
ExecCommand* cmv = new ExecCommand( "cleartool", args, dir, env, this );
- connect( cmv, TQT_SIGNAL(finished( const TQString&, const TQString& )),
- this, TQT_SLOT(slotDiffFinished( const TQString&, const TQString& )) );
+ connect( cmv, TQ_SIGNAL(finished( const TQString&, const TQString& )),
+ this, TQ_SLOT(slotDiffFinished( const TQString&, const TQString& )) );
}
diff --git a/vcs/clearcase/commentdlg.cpp b/vcs/clearcase/commentdlg.cpp
index 2f93ab49..f940b77c 100644
--- a/vcs/clearcase/commentdlg.cpp
+++ b/vcs/clearcase/commentdlg.cpp
@@ -46,8 +46,8 @@ CcaseCommentDlg::CcaseCommentDlg(bool bCheckin)
buttonbox->addStretch();
TQPushButton *ok = buttonbox->addButton(KStdGuiItem::ok());
TQPushButton *cancel = buttonbox->addButton(KStdGuiItem::cancel());
- connect(ok, TQT_SIGNAL(clicked()), TQT_SLOT(accept()) );
- connect(cancel, TQT_SIGNAL(clicked()), TQT_SLOT(reject()) );
+ connect(ok, TQ_SIGNAL(clicked()), TQ_SLOT(accept()) );
+ connect(cancel, TQ_SIGNAL(clicked()), TQ_SLOT(reject()) );
ok->setDefault(true);
buttonbox->layout();
layout2->addWidget(buttonbox, 0);
diff --git a/vcs/clearcase/commentdlg.h b/vcs/clearcase/commentdlg.h
index 1967dfb8..9c1feb46 100644
--- a/vcs/clearcase/commentdlg.h
+++ b/vcs/clearcase/commentdlg.h
@@ -21,9 +21,9 @@ class CcaseCommentDlg : public TQDialog
TQ_OBJECT
public:
- CcaseCommentDlg(bool = FALSE);
+ CcaseCommentDlg(bool = false);
TQString logMessage() { return _edit->text(); };
- bool isReserved() { return (_check) ? _check->isChecked() : FALSE; };
+ bool isReserved() { return (_check) ? _check->isChecked() : false; };
private:
TQMultiLineEdit *_edit;