summaryrefslogtreecommitdiffstats
path: root/katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:55 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:55:55 -0600
commit769d9f539ffa81925d11cf5480e396d26a43b86d (patch)
treef853cfe083f858b7492337c650eddf9383d332e8 /katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp
parenta3703745120ffe8f1beadd5fa58f9ab1470bc2f8 (diff)
downloadkatapult-769d9f539ffa81925d11cf5480e396d26a43b86d.tar.gz
katapult-769d9f539ffa81925d11cf5480e396d26a43b86d.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit a3703745120ffe8f1beadd5fa58f9ab1470bc2f8.
Diffstat (limited to 'katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp')
-rw-r--r--katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp b/katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp
index 724c371..05a6c74 100644
--- a/katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp
+++ b/katapult/plugins/catalogs/calculatorcatalog/calculatorcatalog.cpp
@@ -141,7 +141,7 @@ CalculatorCatalog::~CalculatorCatalog()
void CalculatorCatalog::queryChanged()
{
- int newStatus = 0;
+ int newtqStatus = 0;
TQString cmd = query();
if (cmd.isEmpty()) {
@@ -203,12 +203,12 @@ void CalculatorCatalog::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
- newStatus = S_HasResults | S_Multiple | S_Active;
+ newtqStatus = S_HasResults | S_Multiple | S_Active;
} else {
- newStatus = 0;
+ newtqStatus = 0;
}
}
- setStatus(newStatus);
+ settqStatus(newtqStatus);
}
void CalculatorCatalog::reset()