summaryrefslogtreecommitdiffstats
path: root/tdeui/kinputdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kinputdialog.cpp')
-rw-r--r--tdeui/kinputdialog.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/tdeui/kinputdialog.cpp b/tdeui/kinputdialog.cpp
index 9da93ba0f..5bf89ae20 100644
--- a/tdeui/kinputdialog.cpp
+++ b/tdeui/kinputdialog.cpp
@@ -77,9 +77,9 @@ KInputDialog::KInputDialog( const TQString &caption, const TQString &label,
if ( !mask.isEmpty() )
d->m_lineEdit->setInputMask( mask );
- connect( d->m_lineEdit, TQT_SIGNAL( textChanged( const TQString & ) ),
- TQT_SLOT( slotEditTextChanged( const TQString & ) ) );
- connect( this, TQT_SIGNAL( user1Clicked() ), d->m_lineEdit, TQT_SLOT( clear() ) );
+ connect( d->m_lineEdit, TQ_SIGNAL( textChanged( const TQString & ) ),
+ TQ_SLOT( slotEditTextChanged( const TQString & ) ) );
+ connect( this, TQ_SIGNAL( user1Clicked() ), d->m_lineEdit, TQ_SLOT( clear() ) );
slotEditTextChanged( value );
setMinimumWidth( 350 );
@@ -105,7 +105,7 @@ KInputDialog::KInputDialog( const TQString &caption, const TQString &label,
d->m_textEdit->setFocus();
d->m_label->setBuddy( d->m_textEdit );
- connect( this, TQT_SIGNAL( user1Clicked() ), d->m_textEdit, TQT_SLOT( clear() ) );
+ connect( this, TQ_SIGNAL( user1Clicked() ), d->m_textEdit, TQ_SLOT( clear() ) );
setMinimumWidth( 400 );
}
@@ -176,10 +176,10 @@ KInputDialog::KInputDialog( const TQString &caption, const TQString &label,
d->m_comboBox->setCurrentItem( current );
layout->addWidget( d->m_comboBox );
- connect( d->m_comboBox, TQT_SIGNAL( textChanged( const TQString & ) ),
- TQT_SLOT( slotUpdateButtons( const TQString & ) ) );
- connect( this, TQT_SIGNAL( user1Clicked() ),
- d->m_comboBox, TQT_SLOT( clearEdit() ) );
+ connect( d->m_comboBox, TQ_SIGNAL( textChanged( const TQString & ) ),
+ TQ_SLOT( slotUpdateButtons( const TQString & ) ) );
+ connect( this, TQ_SIGNAL( user1Clicked() ),
+ d->m_comboBox, TQ_SLOT( clearEdit() ) );
slotUpdateButtons( d->m_comboBox->currentText() );
d->m_comboBox->setFocus();
} else {
@@ -188,10 +188,10 @@ KInputDialog::KInputDialog( const TQString &caption, const TQString &label,
d->m_listBox->setSelected( current, true );
d->m_listBox->ensureCurrentVisible();
layout->addWidget( d->m_listBox, 10 );
- connect( d->m_listBox, TQT_SIGNAL( doubleClicked( TQListBoxItem * ) ),
- TQT_SLOT( slotOk() ) );
- connect( d->m_listBox, TQT_SIGNAL( returnPressed( TQListBoxItem * ) ),
- TQT_SLOT( slotOk() ) );
+ connect( d->m_listBox, TQ_SIGNAL( doubleClicked( TQListBoxItem * ) ),
+ TQ_SLOT( slotOk() ) );
+ connect( d->m_listBox, TQ_SIGNAL( returnPressed( TQListBoxItem * ) ),
+ TQ_SLOT( slotOk() ) );
d->m_listBox->setFocus();
}
@@ -232,10 +232,10 @@ KInputDialog::KInputDialog( const TQString &caption, const TQString &label,
}
else
{
- connect( d->m_listBox, TQT_SIGNAL( doubleClicked( TQListBoxItem * ) ),
- TQT_SLOT( slotOk() ) );
- connect( d->m_listBox, TQT_SIGNAL( returnPressed( TQListBoxItem * ) ),
- TQT_SLOT( slotOk() ) );
+ connect( d->m_listBox, TQ_SIGNAL( doubleClicked( TQListBoxItem * ) ),
+ TQ_SLOT( slotOk() ) );
+ connect( d->m_listBox, TQ_SIGNAL( returnPressed( TQListBoxItem * ) ),
+ TQ_SLOT( slotOk() ) );
TQString text = select.first();
item = d->m_listBox->findItem( text, CaseSensitive|ExactMatch );
@@ -370,7 +370,7 @@ TQString KInputDialog::getItem( const TQString &caption, const TQString &label,
editable, parent, name );
if ( !editable)
{
- connect( dlg.listBox(), TQT_SIGNAL(doubleClicked ( TQListBoxItem *)), &dlg, TQT_SLOT( slotOk()));
+ connect( dlg.listBox(), TQ_SIGNAL(doubleClicked ( TQListBoxItem *)), &dlg, TQ_SLOT( slotOk()));
}
bool _ok = ( dlg.exec() == Accepted );