summaryrefslogtreecommitdiffstats
path: root/cervisia/logdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/logdlg.cpp')
-rw-r--r--cervisia/logdlg.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/cervisia/logdlg.cpp b/cervisia/logdlg.cpp
index 11086c9a..f754e849 100644
--- a/cervisia/logdlg.cpp
+++ b/cervisia/logdlg.cpp
@@ -70,8 +70,8 @@ LogDialog::LogDialog(TDEConfig& cfg, TQWidget *parent, const char *name)
setMainWidget(splitter);
tree = new LogTreeView(this);
- connect( tree, TQT_SIGNAL(revisionClicked(TQString,bool)),
- this, TQT_SLOT(revisionSelected(TQString,bool)) );
+ connect( tree, TQ_SIGNAL(revisionClicked(TQString,bool)),
+ this, TQ_SLOT(revisionSelected(TQString,bool)) );
TQWidget* listWidget = new TQWidget(this);
TQVBoxLayout* listLayout = new TQVBoxLayout(listWidget);
@@ -87,20 +87,20 @@ LogDialog::LogDialog(TDEConfig& cfg, TQWidget *parent, const char *name)
searchLayout->addWidget(searchLabel);
searchLayout->addWidget(searchLine, 1);
- connect( list, TQT_SIGNAL(revisionClicked(TQString,bool)),
- this, TQT_SLOT(revisionSelected(TQString,bool)) );
+ connect( list, TQ_SIGNAL(revisionClicked(TQString,bool)),
+ this, TQ_SLOT(revisionSelected(TQString,bool)) );
plain = new LogPlainView(this);
- connect( plain, TQT_SIGNAL(revisionClicked(TQString,bool)),
- this, TQT_SLOT(revisionSelected(TQString,bool)) );
+ connect( plain, TQ_SIGNAL(revisionClicked(TQString,bool)),
+ this, TQ_SLOT(revisionSelected(TQString,bool)) );
tabWidget = new TQTabWidget(splitter);
tabWidget->addTab(tree, i18n("&Tree"));
tabWidget->addTab(listWidget, i18n("&List"));
tabWidget->addTab(plain, i18n("CVS &Output"));
- connect(tabWidget, TQT_SIGNAL(currentChanged(TQWidget*)),
- this, TQT_SLOT(tabChanged(TQWidget*)));
+ connect(tabWidget, TQ_SIGNAL(currentChanged(TQWidget*)),
+ this, TQ_SLOT(tabChanged(TQWidget*)));
TQWhatsThis::add(tree, i18n("Choose revision A by clicking with the left "
"mouse button,\nrevision B by clicking with "
@@ -183,17 +183,17 @@ LogDialog::LogDialog(TDEConfig& cfg, TQWidget *parent, const char *name)
TQWhatsThis::add(revbox[1], i18n("This revision is used as the second "
"item of a Diff operation."));
- connect( tagcombo[0], TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(tagASelected(int)) );
- connect( tagcombo[1], TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(tagBSelected(int)) );
-
- connect( this, TQT_SIGNAL(user1Clicked()),
- this, TQT_SLOT(annotateClicked()) );
- connect( this, TQT_SIGNAL(user2Clicked()),
- this, TQT_SLOT(diffClicked()) );
- connect( this, TQT_SIGNAL(user3Clicked()),
- this, TQT_SLOT(findClicked()) );
+ connect( tagcombo[0], TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(tagASelected(int)) );
+ connect( tagcombo[1], TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(tagBSelected(int)) );
+
+ connect( this, TQ_SIGNAL(user1Clicked()),
+ this, TQ_SLOT(annotateClicked()) );
+ connect( this, TQ_SIGNAL(user2Clicked()),
+ this, TQ_SLOT(diffClicked()) );
+ connect( this, TQ_SIGNAL(user3Clicked()),
+ this, TQ_SLOT(findClicked()) );
setButtonGuiItem(Ok, KGuiItem(i18n("to view something", "&View"),"document-open"));
setButtonGuiItem(Apply, KGuiItem(i18n("Create Patch...")));