summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp')
-rw-r--r--katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp b/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
index cbc3b8b..93e103c 100644
--- a/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
+++ b/katapult/plugins/catalogs/spellcatalog/spellcatalog.cpp
@@ -52,7 +52,7 @@ SpellCatalog::~SpellCatalog()
void SpellCatalog::queryChanged()
{
- int newtqStatus = 0;
+ int newStatus = 0;
TQString cmd = query();
int origLength = cmd.length();
@@ -67,12 +67,12 @@ void SpellCatalog::queryChanged()
//set status.
//add S_Multiple to make sure katapult doesn't auto-exec and close the window
//add S_Active to make sure katapult doesn't start the hideTimer or clearTimer
- newtqStatus = S_HasResults | S_Multiple | S_Active;
+ newStatus = S_HasResults | S_Multiple | S_Active;
} else {
- newtqStatus = 0;
+ newStatus = 0;
}
}
- settqStatus(newtqStatus);
+ setStatus(newStatus);
}
bool SpellCatalog::accepts(const TQString& str) const