summaryrefslogtreecommitdiffstats
path: root/kbabel/datatools/punctuation/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/datatools/punctuation/main.cc')
-rw-r--r--kbabel/datatools/punctuation/main.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/kbabel/datatools/punctuation/main.cc b/kbabel/datatools/punctuation/main.cc
index 8806b536..42b2f2eb 100644
--- a/kbabel/datatools/punctuation/main.cc
+++ b/kbabel/datatools/punctuation/main.cc
@@ -19,11 +19,11 @@
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
- the Qt library by Trolltech AS, Norway (or with modified versions
- of Qt that use the same license as Qt), and distribute linked
+ the TQt library by Trolltech AS, Norway (or with modified versions
+ of TQt that use the same license as TQt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
- Qt. If you modify this file, you may extend this exception to
+ TQt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
@@ -51,8 +51,8 @@ K_EXPORT_COMPONENT_FACTORY( kbabel_punctuationtool, KGenericFactory<PunctuationT
using namespace KBabel;
-PunctuationTool::PunctuationTool( TQObject* parent, const char* name, const TQStringList & )
- : KDataTool( parent, name )
+PunctuationTool::PunctuationTool( TQObject* tqparent, const char* name, const TQStringList & )
+ : KDataTool( tqparent, name )
{
// bogus translation just for allowing the translation
i18n("what check found errors","punctuation");
@@ -92,7 +92,7 @@ bool PunctuationTool::run( const TQString& command, void* data, const TQString&
// lookup punctuation in original text
TQRegExp punc("[\\.!\\?:]+$");
- int i = lineid.find(punc);
+ int i = lineid.tqfind(punc);
TQString t("");
@@ -102,7 +102,7 @@ bool PunctuationTool::run( const TQString& command, void* data, const TQString&
{
// check, that both plural forms contain the same punctuation
TQString pl = *(item->msgid().at(1));
- int j = pl.find(punc);
+ int j = pl.tqfind(punc);
TQString tp("");
if( j != -1 ) tp = pl.right(pl.length()-j);
@@ -122,7 +122,7 @@ bool PunctuationTool::run( const TQString& command, void* data, const TQString&
{
TQString linestr=(*form);
- int j = linestr.find(punc);
+ int j = linestr.tqfind(punc);
// there is no punctuation in original, but one in the translation
if( i == -1 && j != i )