Rename old tq methods that no longer need a unique name

pull/1/head
Timothy Pearson 13 years ago
parent 769d9f539f
commit bccaa22a75

@ -46,7 +46,7 @@ unsigned int CachedCatalog::minQueryLen() const
void CachedCatalog::queryChanged() void CachedCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
if(query() == "") if(query() == "")
{ {
results.clear(); results.clear();
@ -87,19 +87,19 @@ void CachedCatalog::queryChanged()
} }
} }
newtqStatus |= S_Active; newStatus |= S_Active;
if(results.count() > 0) if(results.count() > 0)
{ {
newtqStatus |= S_HasResults; newStatus |= S_HasResults;
if(results.count() > 1) if(results.count() > 1)
newtqStatus |= S_Multiple; newStatus |= S_Multiple;
} else } else
newtqStatus |= S_NoResults; newStatus |= S_NoResults;
setBestMatch(newBestMatch); setBestMatch(newBestMatch);
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
Match CachedCatalog::queryItem(const KatapultItem *item, TQString query) const Match CachedCatalog::queryItem(const KatapultItem *item, TQString query) const

@ -208,7 +208,7 @@ void ImageDisplay::drawText(TQPixmap & pixmap, int x, int width, TQString text,
TQPainter painter(&pixmap); TQPainter painter(&pixmap);
painter.setFont(font); painter.setFont(font);
painter.setPen(tqcolorGroup().color(TQColorGroup::Link)); painter.setPen(colorGroup().color(TQColorGroup::Link));
painter.drawText(x, singlesize[1]-offset[3], hilighted); painter.drawText(x, singlesize[1]-offset[3], hilighted);
painter.setPen(TQColor(255, 255, 255)); painter.setPen(TQColor(255, 255, 255));
painter.drawText(x+metrics.width(hilighted), singlesize[1]-offset[3], remaining); painter.drawText(x+metrics.width(hilighted), singlesize[1]-offset[3], remaining);

@ -90,7 +90,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>91</width> <width>91</width>
<height>20</height> <height>20</height>
@ -130,7 +130,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>181</width> <width>181</width>
<height>20</height> <height>20</height>
@ -170,7 +170,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>191</width> <width>191</width>
<height>20</height> <height>20</height>
@ -196,7 +196,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>160</height> <height>160</height>

@ -50,7 +50,7 @@ void KatapultCatalog::setQuery(TQString _query)
} }
} }
void KatapultCatalog::settqStatus(int _status) void KatapultCatalog::setStatus(int _status)
{ {
this->_status = _status; this->_status = _status;
} }

@ -53,7 +53,7 @@ public:
protected: protected:
TQString query() const; TQString query() const;
void settqStatus(int); void setStatus(int);
void setBestMatch(Match); void setBestMatch(Match);
virtual void queryChanged(); virtual void queryChanged();

@ -76,7 +76,7 @@ void KatapultDisplay::setAction(const KatapultAction *_action)
this->_action = _action; this->_action = _action;
} }
void KatapultDisplay::settqStatus(int _status) void KatapultDisplay::setStatus(int _status)
{ {
this->_status = _status; this->_status = _status;
} }

@ -46,7 +46,7 @@ public:
void setSelected(unsigned int); void setSelected(unsigned int);
void setItem(const KatapultItem *); void setItem(const KatapultItem *);
void setAction(const KatapultAction *); void setAction(const KatapultAction *);
void settqStatus(int); void setStatus(int);
virtual void readSettings(KConfigBase *); virtual void readSettings(KConfigBase *);
virtual void writeSettings(KConfigBase *); virtual void writeSettings(KConfigBase *);

@ -48,7 +48,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>80</height> <height>80</height>

@ -237,7 +237,7 @@ This sets how long Katapult will wait before hiding the launcher.</string>
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>62</height> <height>62</height>

@ -164,7 +164,7 @@ void Katapult::clearQuery()
void Katapult::setQuery(TQString _query) void Katapult::setQuery(TQString _query)
{ {
alltqStatus=0; allStatus=0;
bestMatch = Match(); bestMatch = Match();
this->_query = _query; this->_query = _query;
@ -181,12 +181,12 @@ void Katapult::setQuery(TQString _query)
} }
display->setItem(0); display->setItem(0);
display->setAction(0); display->setAction(0);
display->settqStatus(0); display->setStatus(0);
display->setSelected(0); display->setSelected(0);
action = 0; action = 0;
} else if(catalogs.count() == 0) { } else if(catalogs.count() == 0) {
alltqStatus = S_Active | S_NoResults; allStatus = S_Active | S_NoResults;
display->settqStatus(alltqStatus); display->setStatus(allStatus);
} else { } else {
TQDictIterator<KatapultCatalog> it(catalogs); TQDictIterator<KatapultCatalog> it(catalogs);
KatapultCatalog *catalog; KatapultCatalog *catalog;
@ -200,8 +200,8 @@ void Katapult::setQuery(TQString _query)
status = catalog->status(); status = catalog->status();
if(status & S_HasResults) if(status & S_HasResults)
{ {
if(alltqStatus & S_HasResults) if(allStatus & S_HasResults)
alltqStatus |= S_Multiple; allStatus |= S_Multiple;
Match match = catalog->bestMatch(); Match match = catalog->bestMatch();
if(!match.isNull()) if(!match.isNull())
{ {
@ -209,7 +209,7 @@ void Katapult::setQuery(TQString _query)
bestMatch = match; bestMatch = match;
} }
} }
alltqStatus |= status; allStatus |= status;
} }
if(bestMatch.isNull() || bestMatch.rank() == 0) if(bestMatch.isNull() || bestMatch.rank() == 0)
bestMatch = Match(); bestMatch = Match();
@ -219,7 +219,7 @@ void Katapult::setQuery(TQString _query)
connect(bestMatch.item(), TQT_SIGNAL(itemChanged()), TQT_TQOBJECT(this), TQT_SLOT(updateDisplay())); connect(bestMatch.item(), TQT_SIGNAL(itemChanged()), TQT_TQOBJECT(this), TQT_SLOT(updateDisplay()));
} }
} }
if(!(alltqStatus & S_HasResults) && alltqStatus & S_Active) { if(!(allStatus & S_HasResults) && allStatus & S_Active) {
// no results // no results
switch(settings->noResultsAction()) { switch(settings->noResultsAction()) {
case KatapultSettings::NR_HideDisplay: case KatapultSettings::NR_HideDisplay:
@ -240,7 +240,7 @@ void Katapult::setQuery(TQString _query)
clearTimer->stop(); clearTimer->stop();
} }
if(!executing && settings->isAutoExecute() && alltqStatus & S_HasResults && !(alltqStatus & S_Multiple)) { if(!executing && settings->isAutoExecute() && allStatus & S_HasResults && !(allStatus & S_Multiple)) {
execute(); execute();
} }
@ -266,7 +266,7 @@ void Katapult::updateDisplay()
display->setAction(action); display->setAction(action);
display->setSelected(bestMatch.matched()); display->setSelected(bestMatch.matched());
} }
display->settqStatus(alltqStatus); display->setStatus(allStatus);
display->update(); display->update();
} }
} }
@ -276,7 +276,7 @@ void Katapult::showLauncher()
if(!settings->isConfiguring() && display != 0) if(!settings->isConfiguring() && display != 0)
{ {
setQuery(""); setQuery("");
display->settqStatus(0); display->setStatus(0);
display->setQuery(""); display->setQuery("");
display->show(); display->show();
display->update(); display->update();
@ -306,7 +306,7 @@ void Katapult::execute()
executing = TRUE; executing = TRUE;
if(action == 0) if(action == 0)
{ {
display->settqStatus(S_Active | S_NoResults); display->setStatus(S_Active | S_NoResults);
display->update(); display->update();
hideTimer->start(settings->hideDelay(), TRUE); hideTimer->start(settings->hideDelay(), TRUE);
} else { } else {

@ -79,7 +79,7 @@ private:
void initAccel(TQWidget *); void initAccel(TQWidget *);
bool executing; bool executing;
int alltqStatus; int allStatus;
KatapultDisplay *display; KatapultDisplay *display;
KGlobalAccel *globalAccel; KGlobalAccel *globalAccel;
KActionCollection *actions; KActionCollection *actions;

@ -35,7 +35,7 @@ MyDialog1::MyDialog1( TQWidget* parent, const char* name, bool modal, WFlags fl
MyDialog1Layout = new TQGridLayout( this, 1, 1, 11, 6, "MyDialog1Layout"); MyDialog1Layout = new TQGridLayout( this, 1, 1, 11, 6, "MyDialog1Layout");
listBox = new TQListBox( this, "listBox" ); listBox = new TQListBox( this, "listBox" );
listBox->tqsetSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)7, 0, 0, listBox->sizePolicy().hasHeightForWidth() ) ); listBox->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)0, (TQSizePolicy::SizeType)7, 0, 0, listBox->sizePolicy().hasHeightForWidth() ) );
MyDialog1Layout->addWidget( listBox, 0, 0 ); MyDialog1Layout->addWidget( listBox, 0, 0 );
@ -68,7 +68,7 @@ MyDialog1::MyDialog1( TQWidget* parent, const char* name, bool modal, WFlags fl
MyDialog1Layout->addMultiCellLayout( Layout1, 1, 1, 0, 1 ); MyDialog1Layout->addMultiCellLayout( Layout1, 1, 1, 0, 1 );
languageChange(); languageChange();
resize( TQSize(597, 364).expandedTo(tqminimumSizeHint()) ); resize( TQSize(597, 364).expandedTo(minimumSizeHint()) );
clearWState( WState_Polished ); clearWState( WState_Polished );
// signals and slots connections // signals and slots connections

@ -47,7 +47,7 @@ AmarokCatalog::AmarokCatalog(TQObject*, const char*, const TQStringList&): _resu
{ {
_minQueryLen = 3; _minQueryLen = 3;
ActionRegistry::self()->registerAction(new ActionPlaySong()); ActionRegistry::self()->registerAction(new ActionPlaySong());
_gotCollectiontqStatus = false; _gotCollectionStatus = false;
_dynamicCollection = false; _dynamicCollection = false;
checkCollectionType(); checkCollectionType();
@ -58,16 +58,16 @@ AmarokCatalog::~AmarokCatalog()
void AmarokCatalog::queryChanged() void AmarokCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
TQString queryString = query(); TQString queryString = query();
if((TQString(queryString).remove(':').remove('\"').remove(' ').isEmpty()) || (queryString.length() < _minQueryLen)) { if((TQString(queryString).remove(':').remove('\"').remove(' ').isEmpty()) || (queryString.length() < _minQueryLen)) {
reset(); reset();
setBestMatch(Match()); setBestMatch(Match());
settqStatus(0); setStatus(0);
} else { } else {
if ( _gotCollectiontqStatus) if ( _gotCollectionStatus)
{ {
if (!_dynamicCollection) if (!_dynamicCollection)
@ -101,7 +101,7 @@ void AmarokCatalog::queryChanged()
arg << sqlQuery; arg << sqlQuery;
if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)", if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)",
sqlQueryData, replyType, replyData)) { sqlQueryData, replyType, replyData)) {
newtqStatus = 0; newStatus = 0;
} else { } else {
TQDataStream reply(replyData, IO_ReadOnly); TQDataStream reply(replyData, IO_ReadOnly);
if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) { if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) {
@ -109,7 +109,7 @@ void AmarokCatalog::queryChanged()
reply >> sqlResult; reply >> sqlResult;
if(sqlResult.isEmpty()) { if(sqlResult.isEmpty()) {
newtqStatus = 0; newStatus = 0;
} else { } else {
reset(); reset();
//Reads information from SQL-Query //Reads information from SQL-Query
@ -141,12 +141,12 @@ void AmarokCatalog::queryChanged()
//Checks if there are multiple results //Checks if there are multiple results
if( !sqlResult[5].isEmpty() ) if( !sqlResult[5].isEmpty() )
newtqStatus = S_HasResults | S_Multiple; newStatus = S_HasResults | S_Multiple;
else else
newtqStatus = S_HasResults; newStatus = S_HasResults;
} }
} else { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
@ -176,7 +176,7 @@ void AmarokCatalog::queryChanged()
arg << sqlQuery; arg << sqlQuery;
if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)", if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)",
sqlQueryData, replyType, replyData)) { sqlQueryData, replyType, replyData)) {
newtqStatus = 0; newStatus = 0;
} else { } else {
TQDataStream reply(replyData, IO_ReadOnly); TQDataStream reply(replyData, IO_ReadOnly);
if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) { if (replyType == TQSTRINGLIST_OBJECT_NAME_STRING) {
@ -184,7 +184,7 @@ void AmarokCatalog::queryChanged()
reply >> sqlResult; reply >> sqlResult;
if(sqlResult.isEmpty()) { if(sqlResult.isEmpty()) {
newtqStatus = 0; newStatus = 0;
} else { } else {
reset(); reset();
//Reads information from SQL-Query //Reads information from SQL-Query
@ -231,25 +231,25 @@ void AmarokCatalog::queryChanged()
//Checks if there are multiple results //Checks if there are multiple results
if( !sqlResult[7].isEmpty() ) if( !sqlResult[7].isEmpty() )
newtqStatus = S_HasResults | S_Multiple; newStatus = S_HasResults | S_Multiple;
else else
newtqStatus = S_HasResults; newStatus = S_HasResults;
} }
} else { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
} //end of >1.4.2 section } //end of >1.4.2 section
settqStatus(newtqStatus); setStatus(newStatus);
} else { //We haven't got the collection status } else { //We haven't got the collection status
checkCollectionType(); checkCollectionType();
reset(); reset();
setBestMatch(Match()); setBestMatch(Match());
settqStatus(0); setStatus(0);
} }
@ -275,7 +275,7 @@ void AmarokCatalog::checkCollectionType()
arg << sqlQuery; arg << sqlQuery;
if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)", sqlQueryData, replyType, replyData)) if (!kapp->dcopClient()->call("amarok", "collection", "query(TQString)", sqlQueryData, replyType, replyData))
{ {
_gotCollectiontqStatus = false; _gotCollectionStatus = false;
} }
else else
@ -296,11 +296,11 @@ void AmarokCatalog::checkCollectionType()
_dynamicCollection = false; _dynamicCollection = false;
} }
_gotCollectiontqStatus = true; _gotCollectionStatus = true;
} }
else else
{ {
_gotCollectiontqStatus = false; _gotCollectionStatus = false;
} }
} }
} }

@ -56,7 +56,7 @@ protected:
private: private:
unsigned int _minQueryLen; unsigned int _minQueryLen;
bool _dynamicCollection; bool _dynamicCollection;
bool _gotCollectiontqStatus; bool _gotCollectionStatus;
Song _result; Song _result;
}; };

@ -64,7 +64,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>370</height> <height>370</height>

@ -98,7 +98,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>100</height> <height>100</height>

@ -141,7 +141,7 @@ CalculatorCatalog::~CalculatorCatalog()
void CalculatorCatalog::queryChanged() void CalculatorCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
TQString cmd = query(); TQString cmd = query();
if (cmd.isEmpty()) { if (cmd.isEmpty()) {
@ -203,12 +203,12 @@ void CalculatorCatalog::queryChanged()
//set status. //set status.
//add S_Multiple to make sure katapult doesn't auto-exec and close the window //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 //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 { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
void CalculatorCatalog::reset() void CalculatorCatalog::reset()

@ -200,7 +200,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>40</height> <height>40</height>

@ -98,7 +98,7 @@ void DocumentCatalog::refreshFiles()
void DocumentCatalog::queryChanged() void DocumentCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
if(query() == "") if(query() == "")
{ {
// reset query // reset query
@ -169,21 +169,21 @@ void DocumentCatalog::queryChanged()
if(currentDirDoc != 0 && path.isEmpty()) if(currentDirDoc != 0 && path.isEmpty())
newBestMatch = Match(currentDirDoc, 100, currentPath.length()); newBestMatch = Match(currentDirDoc, 100, currentPath.length());
newtqStatus |= S_Active; newStatus |= S_Active;
if(files.count() > 0) if(files.count() > 0)
{ {
newtqStatus |= S_HasResults; newStatus |= S_HasResults;
if(files.count() > 1 || files.at(0)->className() == "Directory") if(files.count() > 1 || files.at(0)->className() == "Directory")
newtqStatus |= S_Multiple; newStatus |= S_Multiple;
} else } else
newtqStatus |= S_NoResults; newStatus |= S_NoResults;
setBestMatch(newBestMatch); setBestMatch(newBestMatch);
} else { } else {
setBestMatch(Match()); setBestMatch(Match());
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
unsigned int DocumentCatalog::minQueryLen() const unsigned int DocumentCatalog::minQueryLen() const

@ -66,7 +66,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>410</height> <height>410</height>

@ -52,7 +52,7 @@ ExecCatalog::~ExecCatalog()
void ExecCatalog::queryChanged() void ExecCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
TQString cmd = query(); TQString cmd = query();
int origLength = cmd.length(); int origLength = cmd.length();
@ -67,12 +67,12 @@ void ExecCatalog::queryChanged()
//set status. //set status.
//add S_Multiple to make sure katapult doesn't auto-exec and close the window //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 //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 { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
bool ExecCatalog::accepts(const TQString& str) const bool ExecCatalog::accepts(const TQString& str) const

@ -50,7 +50,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>150</height> <height>150</height>

@ -52,7 +52,7 @@ GoogleCatalog::~GoogleCatalog()
void GoogleCatalog::queryChanged() void GoogleCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
TQString cmd = query(); TQString cmd = query();
int origLength = cmd.length(); int origLength = cmd.length();
@ -67,12 +67,12 @@ void GoogleCatalog::queryChanged()
//set status. //set status.
//add S_Multiple to make sure katapult doesn't auto-exec and close the window //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 //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 { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
bool GoogleCatalog::accepts(const TQString& str) const bool GoogleCatalog::accepts(const TQString& str) const

@ -50,7 +50,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>150</height> <height>150</height>

@ -85,7 +85,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>370</height> <height>370</height>

@ -50,7 +50,7 @@
<property name="sizeType"> <property name="sizeType">
<enum>Expanding</enum> <enum>Expanding</enum>
</property> </property>
<property name="tqsizeHint"> <property name="sizeHint">
<size> <size>
<width>20</width> <width>20</width>
<height>150</height> <height>150</height>

@ -52,7 +52,7 @@ SpellCatalog::~SpellCatalog()
void SpellCatalog::queryChanged() void SpellCatalog::queryChanged()
{ {
int newtqStatus = 0; int newStatus = 0;
TQString cmd = query(); TQString cmd = query();
int origLength = cmd.length(); int origLength = cmd.length();
@ -67,12 +67,12 @@ void SpellCatalog::queryChanged()
//set status. //set status.
//add S_Multiple to make sure katapult doesn't auto-exec and close the window //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 //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 { } else {
newtqStatus = 0; newStatus = 0;
} }
} }
settqStatus(newtqStatus); setStatus(newStatus);
} }
bool SpellCatalog::accepts(const TQString& str) const bool SpellCatalog::accepts(const TQString& str) const

Loading…
Cancel
Save