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 | 0e574d2e47c3b3a7e1aa7c8d8af044bf5a416427 (patch) | |
tree | 26ec37d8059cb38060d81b388b30f6d05b2e43f1 /src | |
parent | 00488ecb2c6c8484a48d366c4c4e8c9b3a58bcfb (diff) | |
download | tellico-0e574d2e47c3b3a7e1aa7c8d8af044bf5a416427.tar.gz tellico-0e574d2e47c3b3a7e1aa7c8d8af044bf5a416427.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/tellico@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src')
-rw-r--r-- | src/newstuff/manager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/newstuff/manager.cpp b/src/newstuff/manager.cpp index deff143..90bd50f 100644 --- a/src/newstuff/manager.cpp +++ b/src/newstuff/manager.cpp @@ -130,7 +130,7 @@ bool Manager::removeTemplate(const TQString& name_) { // remove config entries even if unsuccessful fileGroup.deleteEntry(name_); - KConfigGroup statusGroup(KGlobal::config(), "KNewStufftqStatus"); + KConfigGroup statusGroup(KGlobal::config(), "KNewStuffStatus"); TQString entryName = statusGroup.readEntry(name_); statusGroup.deleteEntry(name_); statusGroup.deleteEntry(entryName); @@ -244,7 +244,7 @@ bool Manager::removeScript(const TQString& name_) { // remove config entries even if unsuccessful fileGroup.deleteEntry(name_); - KConfigGroup statusGroup(KGlobal::config(), "KNewStufftqStatus"); + KConfigGroup statusGroup(KGlobal::config(), "KNewStuffStatus"); TQString entryName = statusGroup.readEntry(name_); statusGroup.deleteEntry(name_); statusGroup.deleteEntry(entryName); @@ -253,7 +253,7 @@ bool Manager::removeScript(const TQString& name_) { } Tellico::NewStuff::InstalltqStatus Manager::installtqStatus(KNS::Entry* entry_) { - KConfigGroup config(KGlobal::config(), "KNewStufftqStatus"); + KConfigGroup config(KGlobal::config(), "KNewStuffStatus"); TQString datestring = config.readEntry(entry_->name()); if(datestring.isEmpty()) { return NotInstalled; @@ -394,7 +394,7 @@ void Manager::slotInstallFinished() { if(newScript && newScript->successfulInstall()) { const TQString name = m_urlNameMap[newScript->url()]; KNS::Entry* entry = m_scriptEntryMap[newScript]; - KConfigGroup config(KGlobal::config(), "KNewStufftqStatus"); + KConfigGroup config(KGlobal::config(), "KNewStuffStatus"); // have to keep a config entry that maps the name of the file to the name // of the newstuff entry, so we can track which entries are installed // name and entry-name() are probably the same for scripts, but not a problem |