summaryrefslogtreecommitdiffstats
path: root/src/kile/kilegrepdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilegrepdialog.cpp')
-rw-r--r--src/kile/kilegrepdialog.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/kile/kilegrepdialog.cpp b/src/kile/kilegrepdialog.cpp
index cd72f89..0034f7d 100644
--- a/src/kile/kilegrepdialog.cpp
+++ b/src/kile/kilegrepdialog.cpp
@@ -312,19 +312,19 @@ KileGrepDialog::KileGrepDialog(TQWidget *parent, KileInfo *ki, KileGrep::Mode mo
template_edit->setText(template_list[0]);
slotPatternTextChanged(TQString());
- connect( pattern_combo->lineEdit(), TQT_SIGNAL(textChanged ( const TQString & )),
- TQT_SLOT( slotPatternTextChanged( const TQString & )));
- connect( template_combo, TQT_SIGNAL(activated(int)),
- TQT_SLOT(slotTemplateActivated(int)) );
- connect( resultbox, TQT_SIGNAL(highlighted(const TQString&)),
- TQT_SLOT(slotItemSelected(const TQString&)) );
+ connect( pattern_combo->lineEdit(), TQ_SIGNAL(textChanged ( const TQString & )),
+ TQ_SLOT( slotPatternTextChanged( const TQString & )));
+ connect( template_combo, TQ_SIGNAL(activated(int)),
+ TQ_SLOT(slotTemplateActivated(int)) );
+ connect( resultbox, TQ_SIGNAL(highlighted(const TQString&)),
+ TQ_SLOT(slotItemSelected(const TQString&)) );
- connect( search_button, TQT_SIGNAL(clicked()), TQT_SLOT(slotSearch()) );
- connect( clear_button, TQT_SIGNAL(clicked()), TQT_SLOT(slotClear()) );
- connect( close_button, TQT_SIGNAL(clicked()), TQT_SIGNAL(closeClicked()) );
+ connect( search_button, TQ_SIGNAL(clicked()), TQ_SLOT(slotSearch()) );
+ connect( clear_button, TQ_SIGNAL(clicked()), TQ_SLOT(slotClear()) );
+ connect( close_button, TQ_SIGNAL(clicked()), TQ_SIGNAL(closeClicked()) );
- connect( this, TQT_SIGNAL(closeClicked()), TQT_SLOT(slotClose()) );
- connect( this, TQT_SIGNAL(finished()), TQT_SLOT(slotFinished()) );
+ connect( this, TQ_SIGNAL(closeClicked()), TQ_SLOT(slotClose()) );
+ connect( this, TQ_SIGNAL(finished()), TQ_SLOT(slotFinished()) );
resize(450,sizeHint().height());
KILE_DEBUG() << "==KileGrepDialog (create dialog)=============================" << endl;
@@ -495,12 +495,12 @@ void KileGrepDialog::startGrep()
}
m_grepJobs--;
- connect( childproc, TQT_SIGNAL(processExited(TDEProcess *)),
- TQT_SLOT(childExited()) );
- connect( childproc, TQT_SIGNAL(receivedStdout(TDEProcess *, char *, int)),
- TQT_SLOT(receivedOutput(TDEProcess *, char *, int)) );
- connect( childproc, TQT_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
- TQT_SLOT(receivedErrOutput(TDEProcess *, char *, int)) );
+ connect( childproc, TQ_SIGNAL(processExited(TDEProcess *)),
+ TQ_SLOT(childExited()) );
+ connect( childproc, TQ_SIGNAL(receivedStdout(TDEProcess *, char *, int)),
+ TQ_SLOT(receivedOutput(TDEProcess *, char *, int)) );
+ connect( childproc, TQ_SIGNAL(receivedStderr(TDEProcess *, char *, int)),
+ TQ_SLOT(receivedErrOutput(TDEProcess *, char *, int)) );
childproc->start(TDEProcess::NotifyOnExit, TDEProcess::AllOutput);
}