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

@@ -226,7 +226,7 @@ void FindPlugin::setupFilterMenuItems()
d->m_filterActions.clear();
bool haveEnabledFilters = false;
foreach (IFindFilter *filter, findInterfaces) {
QAction *action = new QAction(QLatin1String(" ") + filter->name(), this);
QAction *action = new QAction(QLatin1String(" ") + filter->displayName(), this);
bool isEnabled = filter->isEnabled();
if (isEnabled)
haveEnabledFilters = true;