One method name slipped the naming convention displayName.

This commit is contained in:
con
2010-07-12 12:06:15 +02:00
parent ed38d62c9e
commit 8c920ee089
11 changed files with 11 additions and 11 deletions

View File

@@ -98,7 +98,7 @@ void FindToolWindow::setFindFilters(const QList<IFindFilter *> &filters)
m_ui.filterList->clear();
QStringList names;
foreach (IFindFilter *filter, filters) {
names << filter->name();
names << filter->displayName();
m_configWidgets.append(filter->createConfigWidget());
}
m_ui.filterList->addItems(names);