Fix other signal/slot

svn path=/trunk/KDE/kdepim/; revision=567666
wilder-work
Laurent Montel 20 years ago
parent c110ffdd8c
commit e0e33eafda
  1. 8
      headerlistquicksearch.cpp
  2. 1
      kmfolderdia.cpp
  3. 2
      newfolderdialog.cpp

@ -57,8 +57,8 @@ HeaderListQuickSearch::HeaderListQuickSearch( QWidget *parent,
KActionCollection *actionCollection )
: K3ListViewSearchLine( parent, listView ), mStatusCombo(0), mStatus(), statusList()
{
KAction *resetQuickSearch = new KAction( KIcon( QApplication::isRightToLeft() ? "clear_left" : "locationbar_erase" ),
i18n( "Reset Quick Search" ),
KAction *resetQuickSearch = new KAction( KIcon( QApplication::isRightToLeft() ? "clear_left" : "locationbar_erase" ),
i18n( "Reset Quick Search" ),
actionCollection, "reset_quicksearch" );
connect(resetQuickSearch, SIGNAL( triggered(bool)), SLOT( reset() ));
parent->addAction( resetQuickSearch );
@ -66,10 +66,10 @@ HeaderListQuickSearch::HeaderListQuickSearch( QWidget *parent,
"Resets the quick search so that "
"all messages are shown again." ) );
QLabel *label = new QLabel( i18n("Stat&us:"), parent );
QLabel *label = new QLabel( i18n("Stat&us:"), this );
label->setObjectName( "kde toolbar widget" );
mStatusCombo = new QComboBox( parent );
mStatusCombo = new QComboBox( this );
mStatusCombo->setObjectName( "quick search status combo box" );
mStatusCombo->addItem( SmallIcon( "run" ), i18n("Any Status") );

@ -142,6 +142,7 @@ KMFolderDialog::KMFolderDialog(KMFolder *aFolder, KMFolderDir *aFolderDir,
for ( int i = 0 ; i < mTabs.count() ; ++i )
mTabs[i]->load();
connect( this, SIGNAL( okClicked() ), SLOT( slotOk() ) );
}
void KMFolderDialog::addTab( FolderDiaTab* tab )

@ -208,7 +208,7 @@ NewFolderDialog::NewFolderDialog( QWidget* parent, KMFolder *folder )
#warning Port me!
// clearWState( WState_Polished );
slotFolderNameChanged( mNameLineEdit->text());
connect( this, SIGNAL( okClicked() ), SLOT( slotOk() ) );
}
void NewFolderDialog::slotFolderNameChanged( const QString & _text)

Loading…
Cancel
Save