diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | bc7058f34c0064ee1dc765e9c624b48b7ad507c9 (patch) | |
tree | f08bdf529281bc14a23b0e8cff49edea8754a925 | |
parent | 85a661028c9f5dea429071d62a04de6551c0e53d (diff) | |
download | ksystemlog-bc7058f34c0064ee1dc765e9c624b48b7ad507c9.tar.gz ksystemlog-bc7058f34c0064ee1dc765e9c624b48b7ad507c9.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ksystemlog@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | ksystemlog/src/specificFileList.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksystemlog/src/specificFileList.cpp b/ksystemlog/src/specificFileList.cpp index 9774ea4..92ffb35 100644 --- a/ksystemlog/src/specificFileList.cpp +++ b/ksystemlog/src/specificFileList.cpp @@ -45,13 +45,13 @@ SpecificFileList::SpecificFileList(TQWidget* parent, TQString description) : { - changeItem=new TQPushButton(SmallIconSet("colorize"), i18n("&Change tqStatus..."), buttons); + changeItem=new TQPushButton(SmallIconSet("colorize"), i18n("&Change Status..."), buttons); connect(changeItem, TQT_SIGNAL(clicked()), this, TQT_SLOT(changeItemType())); TQToolTip::add(changeItem, i18n("Change the level of the current file(s)")); TQWhatsThis::add(changeItem, i18n("<qt>Changes the level of the current file(s). See KSystemLog documentation for more information about each log level.</qt>")); fileListMenu->insertSeparator(); - fileListMenu->insertItem(SmallIcon("colorize"), i18n("&Change tqStatus"), this, TQT_SLOT(changeItemType())); + fileListMenu->insertItem(SmallIcon("colorize"), i18n("&Change Status"), this, TQT_SLOT(changeItemType())); changeItem->setEnabled(false); |