summaryrefslogtreecommitdiffstats
path: root/cervisia/commitdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/commitdlg.cpp')
-rw-r--r--cervisia/commitdlg.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/cervisia/commitdlg.cpp b/cervisia/commitdlg.cpp
index 7a25f430..8dd32db5 100644
--- a/cervisia/commitdlg.cpp
+++ b/cervisia/commitdlg.cpp
@@ -71,10 +71,10 @@ CommitDialog::CommitDialog(TDEConfig& cfg, CvsService_stub* service,
m_fileList->setFullWidth(true);
m_fileList->header()->hide();
textlabel->setBuddy(m_fileList);
- connect( m_fileList, TQT_SIGNAL(doubleClicked(TQListViewItem*)),
- this, TQT_SLOT(fileSelected(TQListViewItem*)));
- connect( m_fileList, TQT_SIGNAL(selectionChanged()),
- this, TQT_SLOT(fileHighlighted()) );
+ connect( m_fileList, TQ_SIGNAL(doubleClicked(TQListViewItem*)),
+ this, TQ_SLOT(fileSelected(TQListViewItem*)));
+ connect( m_fileList, TQ_SIGNAL(selectionChanged()),
+ this, TQ_SLOT(fileHighlighted()) );
layout->addWidget(m_fileList, 5);
TQLabel *archivelabel = new TQLabel(i18n("Older &messages:"), mainWidget);
@@ -82,7 +82,7 @@ CommitDialog::CommitDialog(TDEConfig& cfg, CvsService_stub* service,
combo = new TQComboBox(mainWidget);
archivelabel->setBuddy(combo);
- connect( combo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(comboActivated(int)) );
+ connect( combo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(comboActivated(int)) );
// make sure that combobox is smaller than the screen
combo->setSizePolicy(TQSizePolicy(TQSizePolicy::Preferred, TQSizePolicy::Fixed));
layout->addWidget(combo);
@@ -99,14 +99,14 @@ CommitDialog::CommitDialog(TDEConfig& cfg, CvsService_stub* service,
m_useTemplateChk = new TQCheckBox(i18n("Use log message &template"), mainWidget);
layout->addWidget(m_useTemplateChk);
- connect( m_useTemplateChk, TQT_SIGNAL(clicked()), this, TQT_SLOT(useTemplateClicked()) );
+ connect( m_useTemplateChk, TQ_SIGNAL(clicked()), this, TQ_SLOT(useTemplateClicked()) );
checkForTemplateFile();
setButtonGuiItem(User1, KGuiItem(i18n("&Diff"), "vcs_diff"));
enableButton(User1, false);
- connect( this, TQT_SIGNAL(user1Clicked()),
- this, TQT_SLOT(diffClicked()) );
+ connect( this, TQ_SIGNAL(user1Clicked()),
+ this, TQ_SLOT(diffClicked()) );
setHelp("commitingfiles");