diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:26:43 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:26:43 -0500 |
commit | b5528c18eb8080cdf8aad4e0357e337b3d8a5f96 (patch) | |
tree | 41561db84b7b72f0643f1a59157cb8d676c626af /parts/outputviews | |
parent | 7e28a2cd0e6663c45848f47fff28365466a5dc87 (diff) | |
download | tdevelop-b5528c18eb8080cdf8aad4e0357e337b3d8a5f96.tar.gz tdevelop-b5528c18eb8080cdf8aad4e0357e337b3d8a5f96.zip |
Fix inadvertent "TQ" changes.
Diffstat (limited to 'parts/outputviews')
-rw-r--r-- | parts/outputviews/directorystatusmessagefilter.cpp | 8 |
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(")(.*)")); |