summaryrefslogtreecommitdiffstats
path: root/kttsd/filters/sbd/sbdproc.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:52:23 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-20 19:43:55 +0200
commit35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e (patch)
treeca400a824dfa32a8660091d10e8a904ad9099bae /kttsd/filters/sbd/sbdproc.cpp
parentb33c04530149523d99425f92e428231b79b7991d (diff)
downloadtdeaccessibility-35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e.tar.gz
tdeaccessibility-35ef45e0e2bd97bea881ba3c53e0ab35ce84d82e.zip
Remove additional unneeded tq method conversions
(cherry picked from commit 92994ee2036ac7c4c68747f67dbc0ecbaf4c250c)
Diffstat (limited to 'kttsd/filters/sbd/sbdproc.cpp')
-rw-r--r--kttsd/filters/sbd/sbdproc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kttsd/filters/sbd/sbdproc.cpp b/kttsd/filters/sbd/sbdproc.cpp
index 107e6b3..98eec0d 100644
--- a/kttsd/filters/sbd/sbdproc.cpp
+++ b/kttsd/filters/sbd/sbdproc.cpp
@@ -306,7 +306,7 @@ TQString SbdThread::endSentence()
return s;
}
-// Parses a node of the SSML tree and recursively parses its tqchildren.
+// Parses a node of the SSML tree and recursively parses its children.
// Returns the filtered text with each sentence a complete ssml tree.
TQString SbdThread::parseSsmlNode( TQDomNode& n, const TQString& re )
{
@@ -441,7 +441,7 @@ TQString SbdThread::parseSsml( const TQString& inputText, const TQString& re )
// This flag is used to close out a previous sentence.
m_sentenceStarted = false;
- // Get the root element (speak) and recursively process its tqchildren.
+ // Get the root element (speak) and recursively process its children.
TQDomElement docElem = doc.documentElement();
TQDomNode n = docElem.firstChild();
TQString ssml = parseSsmlNode( docElem, re );