summaryrefslogtreecommitdiffstats
path: root/tdeui/keditcl2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/keditcl2.cpp')
-rw-r--r--tdeui/keditcl2.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/tdeui/keditcl2.cpp b/tdeui/keditcl2.cpp
index 77a7d9391..3ccb5226b 100644
--- a/tdeui/keditcl2.cpp
+++ b/tdeui/keditcl2.cpp
@@ -58,8 +58,8 @@ void KEdit::search(){
if( !srchdialog )
{
srchdialog = new KEdFind( this, "searchdialog", false);
- connect(srchdialog,TQT_SIGNAL(search()),this,TQT_SLOT(search_slot()));
- connect(srchdialog,TQT_SIGNAL(done()),this,TQT_SLOT(searchdone_slot()));
+ connect(srchdialog,TQ_SIGNAL(search()),this,TQ_SLOT(search_slot()));
+ connect(srchdialog,TQ_SIGNAL(done()),this,TQ_SLOT(searchdone_slot()));
}
// If we already searched / replaced something before make sure it shows
@@ -254,10 +254,10 @@ void KEdit::replace()
if( !replace_dialog )
{
replace_dialog = new KEdReplace( this, "replace_dialog", false );
- connect(replace_dialog,TQT_SIGNAL(find()),this,TQT_SLOT(replace_search_slot()));
- connect(replace_dialog,TQT_SIGNAL(replace()),this,TQT_SLOT(replace_slot()));
- connect(replace_dialog,TQT_SIGNAL(replaceAll()),this,TQT_SLOT(replace_all_slot()));
- connect(replace_dialog,TQT_SIGNAL(done()),this,TQT_SLOT(replacedone_slot()));
+ connect(replace_dialog,TQ_SIGNAL(find()),this,TQ_SLOT(replace_search_slot()));
+ connect(replace_dialog,TQ_SIGNAL(replace()),this,TQ_SLOT(replace_slot()));
+ connect(replace_dialog,TQ_SIGNAL(replaceAll()),this,TQ_SLOT(replace_all_slot()));
+ connect(replace_dialog,TQ_SIGNAL(done()),this,TQ_SLOT(replacedone_slot()));
}
TQString string = replace_dialog->getText();
@@ -715,8 +715,8 @@ KEdFind::KEdFind( TQWidget *parent, const char *name, bool modal )
d->combo->setMinimumWidth(fontMetrics().maxWidth()*20);
d->combo->setFocus();
- connect(d->combo, TQT_SIGNAL(textChanged ( const TQString & )),
- this,TQT_SLOT(textSearchChanged ( const TQString & )));
+ connect(d->combo, TQ_SIGNAL(textChanged ( const TQString & )),
+ this,TQ_SLOT(textSearchChanged ( const TQString & )));
topLayout->addWidget(d->combo);
@@ -734,7 +734,7 @@ KEdFind::KEdFind( TQWidget *parent, const char *name, bool modal )
enableButton( KDialogBase::User1, !d->combo->currentText().isEmpty() );
if ( !modal )
- connect( this, TQT_SIGNAL( closeClicked() ), this, TQT_SLOT( slotCancel() ) );
+ connect( this, TQ_SIGNAL( closeClicked() ), this, TQ_SLOT( slotCancel() ) );
}
KEdFind::~KEdFind()
@@ -856,8 +856,8 @@ KEdReplace::KEdReplace( TQWidget *parent, const char *name, bool modal )
d->replaceCombo->setMinimumWidth(fontMetrics().maxWidth()*20);
topLayout->addWidget(d->replaceCombo);
- connect(d->searchCombo, TQT_SIGNAL(textChanged ( const TQString & )),
- this,TQT_SLOT(textSearchChanged ( const TQString & )));
+ connect(d->searchCombo, TQ_SIGNAL(textChanged ( const TQString & )),
+ this,TQ_SLOT(textSearchChanged ( const TQString & )));
TQButtonGroup *group = new TQButtonGroup( i18n("Options"), page );
topLayout->addWidget( group );