summaryrefslogtreecommitdiffstats
path: root/parts/outputviews/directorystatusmessagefilter.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:26:43 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-04-13 01:26:43 -0500
commitb5528c18eb8080cdf8aad4e0357e337b3d8a5f96 (patch)
tree41561db84b7b72f0643f1a59157cb8d676c626af /parts/outputviews/directorystatusmessagefilter.cpp
parent7e28a2cd0e6663c45848f47fff28365466a5dc87 (diff)
downloadtdevelop-b5528c18eb8080cdf8aad4e0357e337b3d8a5f96.tar.gz
tdevelop-b5528c18eb8080cdf8aad4e0357e337b3d8a5f96.zip
Fix inadvertent "TQ" changes.
Diffstat (limited to 'parts/outputviews/directorystatusmessagefilter.cpp')
-rw-r--r--parts/outputviews/directorystatusmessagefilter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/parts/outputviews/directorystatusmessagefilter.cpp b/parts/outputviews/directorystatusmessagefilter.cpp
index 114b98ac..0cb27812 100644
--- a/parts/outputviews/directorystatusmessagefilter.cpp
+++ b/parts/outputviews/directorystatusmessagefilter.cpp
@@ -85,8 +85,8 @@ bool DirectoryStatusMessageFilter::matchEnterDir( const TQString& line, TQString
//@todo: other translations!
// we need a TQRegExp because KRegExp is not Utf8 aware.
- // 0x00AB is LEFT-POINTING DOUBLE ANGLE TQUOTATION MARK
- // 0X00BB is RIGHT-POINTING DOUBLE ANGLE TQUOTATION MARK
+ // 0x00AB is LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
+ // 0X00BB is RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
static TQRegExp dirChange(TQString::fromLatin1(".*: (.+) (`|") + TQChar(0x00BB) + TQString::fromLatin1(")(.*)('|") + TQChar(0x00AB) + TQString::fromLatin1(")(.*)"));
static TQRegExp enEnter(TQString::fromLatin1(".*: Entering directory"));
kdDebug(9004) << "Directory filter line " << line << endl;
@@ -157,8 +157,8 @@ bool DirectoryStatusMessageFilter::matchLeaveDir( const TQString& line, TQString
static const TQString po_l("Opuszczam katalog");
// we need a TQRegExp because KRegExp is not Utf8 aware.
- // 0x00AB is LEFT-POINTING DOUBLE ANGLE TQUOTATION MARK
- // 0X00BB is RIGHT-POINTING DOUBLE ANGLE TQUOTATION MARK
+ // 0x00AB is LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
+ // 0X00BB is RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
static TQRegExp dirChange(TQString::fromLatin1(".*: (.+) (`|") + TQChar(0x00BB) + TQString::fromLatin1(")(.*)('|") + TQChar(0x00AB) + TQString::fromLatin1(")(.*)"));