summaryrefslogtreecommitdiffstats
path: root/kttsd/filters/talkerchooser/talkerchooserproc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kttsd/filters/talkerchooser/talkerchooserproc.cpp')
-rw-r--r--kttsd/filters/talkerchooser/talkerchooserproc.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kttsd/filters/talkerchooser/talkerchooserproc.cpp b/kttsd/filters/talkerchooser/talkerchooserproc.cpp
index 5758df2..8d4aeb0 100644
--- a/kttsd/filters/talkerchooser/talkerchooserproc.cpp
+++ b/kttsd/filters/talkerchooser/talkerchooserproc.cpp
@@ -21,7 +21,7 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
******************************************************************************/
-// Qt includes.
+// TQt includes.
#include <tqregexp.h>
// KDE includes.
@@ -38,8 +38,8 @@
/**
* Constructor.
*/
-TalkerChooserProc::TalkerChooserProc( TQObject *parent, const char *name, const TQStringList& /*args*/ ) :
- KttsFilterProc(parent, name)
+TalkerChooserProc::TalkerChooserProc( TQObject *tqparent, const char *name, const TQStringList& /*args*/ ) :
+ KttsFilterProc(tqparent, name)
{
// kdDebug() << "TalkerChooserProc::TalkerChooserProc: Running" << endl;
}
@@ -107,7 +107,7 @@ bool TalkerChooserProc::init(KConfig* config, const TQString& configGroup){
{
if ( !m_re.isEmpty() )
{
- int pos = inputText.find( TQRegExp(m_re) );
+ int pos = inputText.tqfind( TQRegExp(m_re) );
if ( pos < 0 ) return inputText;
}
// If appId doesn't match, return input unmolested.
@@ -119,7 +119,7 @@ bool TalkerChooserProc::init(KConfig* config, const TQString& configGroup){
TQString appIdStr = appId;
for ( uint ndx=0; ndx < m_appIdList.count(); ++ndx )
{
- if ( appIdStr.contains(m_appIdList[ndx]) )
+ if ( appIdStr.tqcontains(m_appIdList[ndx]) )
{
found = true;
break;