Replace handcrafted filter widgets by Utils::FilterLineEdit

This commit is contained in:
Friedemann Kleint
2009-12-16 15:58:10 +01:00
parent f098f0398f
commit 718f8fa898
8 changed files with 74 additions and 128 deletions

View File

@@ -174,7 +174,7 @@ NickNameDialog::NickNameDialog(QStandardItemModel *model, QWidget *parent) :
SLOT(slotDoubleClicked(QModelIndex)));
connect(m_ui->filterTreeView->selectionModel(), SIGNAL(currentRowChanged(QModelIndex,QModelIndex)),
this, SLOT(slotCurrentItemChanged(QModelIndex)));
connect(m_ui->filterLineEdit, SIGNAL(textChanged(QString)),
connect(m_ui->filterLineEdit, SIGNAL(filterChanged(QString)),
m_filterModel, SLOT(setFilterFixedString(QString)));
}