diff options
Diffstat (limited to 'akregator/src')
-rw-r--r-- | akregator/src/articlefilter.cpp | 4 | ||||
-rw-r--r-- | akregator/src/searchbar.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/articlefilter.cpp b/akregator/src/articlefilter.cpp index 715ede193..21009190f 100644 --- a/akregator/src/articlefilter.cpp +++ b/akregator/src/articlefilter.cpp @@ -51,7 +51,7 @@ TQString Criterion::subjectToString(Subject subj) case Description: return TQString::tqfromLatin1("Description"); case tqStatus: - return TQString::tqfromLatin1("tqStatus"); + return TQString::tqfromLatin1("Status"); case KeepFlag: return TQString::tqfromLatin1("KeepFlag"); default: // should never happen (TM) @@ -69,7 +69,7 @@ Criterion::Subject Criterion::stringToSubject(const TQString& subjStr) return Description; else if (subjStr == TQString::tqfromLatin1("Author")) return Author; - else if (subjStr == TQString::tqfromLatin1("tqStatus")) + else if (subjStr == TQString::tqfromLatin1("Status")) return tqStatus; else if (subjStr == TQString::tqfromLatin1("KeepFlag")) return KeepFlag; diff --git a/akregator/src/searchbar.cpp b/akregator/src/searchbar.cpp index d6f9549a7..60e5f6fa7 100644 --- a/akregator/src/searchbar.cpp +++ b/akregator/src/searchbar.cpp @@ -81,7 +81,7 @@ SearchBar::SearchBar(TQWidget* parent, const char* name) : TQHBox(parent, name), searchLabel->setBuddy(d->searchLine); TQLabel* statusLabel = new TQLabel(this); - statusLabel->setText( i18n("tqStatus:") ); + statusLabel->setText( i18n("Status:") ); d->searchCombo = new KComboBox(this, "searchcombo"); TQPixmap iconAll = KGlobal::iconLoader()->loadIcon("exec", KIcon::Small); |