diff options
Diffstat (limited to 'src/filter.cpp')
-rw-r--r-- | src/filter.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filter.cpp b/src/filter.cpp index 9d4a74c..99ccb70 100644 --- a/src/filter.cpp +++ b/src/filter.cpp @@ -52,7 +52,7 @@ FilterBar::FilterBar(TQWidget *tqparent, const char *name) // Create every widgets: TQIconSet resetIconSet = kapp->iconLoader()->loadIconSet("locationbar_erase", KIcon::Toolbar); - TQIconSet inAllIconSet = kapp->iconLoader()->loadIconSet("tqfind", KIcon::Toolbar); + TQIconSet inAllIconSet = kapp->iconLoader()->loadIconSet("find", KIcon::Toolbar); m_resetButton = new TQToolButton(this); @@ -282,13 +282,13 @@ void FilterBar::tagChanged(int index) break; default: // Try to find if we are filtering a tag: - TQMapIterator<int, Tag*> it = m_tagsMap.tqfind(index); + TQMapIterator<int, Tag*> it = m_tagsMap.find(index); if (it != m_tagsMap.end()) { m_data->tagFilterType = FilterData::TagFilter; m_data->tag = *it; } else { // If not, try to find if we are filtering a state: - TQMapIterator<int, State*> it2 = m_statesMap.tqfind(index); + TQMapIterator<int, State*> it2 = m_statesMap.find(index); if (it2 != m_statesMap.end()) { m_data->tagFilterType = FilterData::StateFilter; m_data->state = *it2; |