summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 02:13:22 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-13 02:13:22 -0500
commitb0050498932208810dd4555744eb81bb49a95633 (patch)
treebd3fd282afa3c3f12f8e38ea5c6cbf946d60144c /src
parent57a5438d76f28c3a0309389fe172dcd37abfb685 (diff)
downloadkchmviewer-b0050498932208810dd4555744eb81bb49a95633.tar.gz
kchmviewer-b0050498932208810dd4555744eb81bb49a95633.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'src')
-rw-r--r--src/kchmsearchengine_impl.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kchmsearchengine_impl.cpp b/src/kchmsearchengine_impl.cpp
index 0352ee3..89db7e7 100644
--- a/src/kchmsearchengine_impl.cpp
+++ b/src/kchmsearchengine_impl.cpp
@@ -183,12 +183,12 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList &
{
STATE_OUTSIDE_TAGS, // outside HTML tags; parse text
STATE_IN_HTML_TAG, // inside HTML tags; wait for end tag
- STATE_IN_TQUOTES, // inside HTML tags and inside quotes; wait for end quote (in var QuoteChar)
+ STATE_IN_QUOTES, // inside HTML tags and inside quotes; wait for end quote (in var QuoteChar)
STATE_IN_HTML_ENTITY, // inside HTML entity; parse the entity
};
state_t state = STATE_OUTSIDE_TAGS;
- TQChar QuoteChar; // used in STATE_IN_TQUOTES
+ TQChar QuoteChar; // used in STATE_IN_QUOTES
for ( unsigned int j = 0; j < text.length(); j++ )
{
@@ -203,7 +203,7 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList &
// Ignore everything until we see '>' (end of HTML tag) or quote char (quote start)
if ( ch == '"' || ch == '\'' )
{
- state = STATE_IN_TQUOTES;
+ state = STATE_IN_QUOTES;
QuoteChar = ch;
}
else if ( ch == '>' )
@@ -211,7 +211,7 @@ bool Index::parseDocumentToStringlist( const TQString & filename, TQStringList &
continue;
}
- else if ( state == STATE_IN_TQUOTES )
+ else if ( state == STATE_IN_QUOTES )
{
// We are inside quoted text inside HTML tag.
// Ignore everything until we see the quote character again