diff options
| author | Peter Penz <[email protected]> | 2009-12-04 00:18:24 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-12-04 00:18:24 +0000 |
| commit | 521f826ad9fdbe791ab4bdbb962dbfe116e8c938 (patch) | |
| tree | e6b4ca5f362f43340696efdbf3befa839d52413d /src/search/dolphinsearchbox.cpp | |
| parent | 9337b232b89f1221b7e12a25ffd877fec210719a (diff) | |
Minor adjustments for searching: at least searching for tags works now again :-)
svn path=/trunk/KDE/kdebase/apps/; revision=1058137
Diffstat (limited to 'src/search/dolphinsearchbox.cpp')
| -rw-r--r-- | src/search/dolphinsearchbox.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp index 507becabd..1dcb381dd 100644 --- a/src/search/dolphinsearchbox.cpp +++ b/src/search/dolphinsearchbox.cpp @@ -61,8 +61,8 @@ DolphinSearchCompleter::DolphinSearchCompleter(KLineEdit* linedit) : foreach (const Nepomuk::Tag& tag, tags) { const QString tagText = tag.label(); addCompletionItem(tagText, - "tag:\"" + tagText + '\"', - i18nc("Tag as in Nepomuk::Tag", "Tag"), + "hasTag:\"" + tagText + '\"', + i18nc("Tag as in Nepomuk::Tag", "Tag"), // TODO: change to "hasTag" after msg freeze QString(), KIcon("mail-tagged")); } |
