summaryrefslogtreecommitdiffstats
path: root/cervisia/diffdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cervisia/diffdlg.cpp')
-rw-r--r--cervisia/diffdlg.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cervisia/diffdlg.cpp b/cervisia/diffdlg.cpp
index 41116256..54f34fc7 100644
--- a/cervisia/diffdlg.cpp
+++ b/cervisia/diffdlg.cpp
@@ -81,25 +81,25 @@ DiffDialog::DiffDialog(TDEConfig& cfg, TQWidget *parent, const char *name, bool
syncbox = new TQCheckBox(i18n("Synchronize scroll bars"), mainWidget);
syncbox->setChecked(true);
- connect( syncbox, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(toggleSynchronize(bool)) );
+ connect( syncbox, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(toggleSynchronize(bool)) );
itemscombo = new TQComboBox(mainWidget);
itemscombo->insertItem(TQString());
- connect( itemscombo, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(comboActivated(int)) );
+ connect( itemscombo, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(comboActivated(int)) );
nofnlabel = new TQLabel(mainWidget);
// avoids auto resize when the text is changed
nofnlabel->setMinimumWidth(fontMetrics().width(i18n("%1 differences").arg(10000)));
backbutton = new TQPushButton(TQString::fromLatin1("&<<"), mainWidget);
- connect( backbutton, TQT_SIGNAL(clicked()), TQT_SLOT(backClicked()) );
+ connect( backbutton, TQ_SIGNAL(clicked()), TQ_SLOT(backClicked()) );
forwbutton = new TQPushButton(TQString::fromLatin1("&>>"), mainWidget);
- connect( forwbutton, TQT_SIGNAL(clicked()), TQT_SLOT(forwClicked()) );
+ connect( forwbutton, TQ_SIGNAL(clicked()), TQ_SLOT(forwClicked()) );
- connect( this, TQT_SIGNAL(user1Clicked()), TQT_SLOT(saveAsClicked()) );
+ connect( this, TQ_SIGNAL(user1Clicked()), TQ_SLOT(saveAsClicked()) );
TQBoxLayout *buttonlayout = new TQHBoxLayout(layout);
buttonlayout->addWidget(syncbox, 0);