summaryrefslogtreecommitdiffstats
path: root/kandy
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 06:08:18 +0000
commit4c6f8d69e2d1501837affb472c4eb8fec4462240 (patch)
tree766a8ad7939fcf3eec534184c36bd0e0f80489e2 /kandy
parent469cc56a805bd3d6940d54adbef554877c29853c (diff)
downloadtdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.tar.gz
tdepim-4c6f8d69e2d1501837affb472c4eb8fec4462240.zip
rename the following methods:
tqfind find tqreplace replace tqcontains contains git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kandy')
-rw-r--r--kandy/COPYING4
-rw-r--r--kandy/src/atcommand.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/kandy/COPYING b/kandy/COPYING
index 0a56ad07..0b84a43f 100644
--- a/kandy/COPYING
+++ b/kandy/COPYING
@@ -59,7 +59,7 @@ modification follow.
GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- 0. This License applies to any program or other work which tqcontains
+ 0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License. The "Program", below,
refers to any such program or work, and a "work based on the Program"
@@ -154,7 +154,7 @@ Sections 1 and 2 above provided that you also do one of the following:
The source code for a work means the preferred form of the work for
making modifications to it. For an executable work, complete source
-code means all the source code for all modules it tqcontains, plus any
+code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable. However, as a
special exception, the source code distributed need not include
diff --git a/kandy/src/atcommand.cpp b/kandy/src/atcommand.cpp
index d010bb0b..f03bb679 100644
--- a/kandy/src/atcommand.cpp
+++ b/kandy/src/atcommand.cpp
@@ -112,7 +112,7 @@ TQString ATCommand::cmdString()
TQString ATCommand::cmd()
{
if (mParameters.count() > 0) {
- TQString cmd = cmdString().left(cmdString().tqfind("=") + 1);
+ TQString cmd = cmdString().left(cmdString().find("=") + 1);
// kdDebug() << "--1-cmd: " << cmd << endl;
for(uint i=0;i<mParameters.count();++i) {
cmd += mParameters.at(i)->value();
@@ -157,7 +157,7 @@ void ATCommand::setResultString(const TQString &resultString)
void ATCommand::setResultFields( TQString fieldsString )
{
- TQString id = mId.upper().left( mId.tqfind( '=' ) );
+ TQString id = mId.upper().left( mId.find( '=' ) );
// Truncate the command name prepended to the output by the modem.
@@ -267,7 +267,7 @@ void ATCommand::setParameter(int index,int value)
TQString ATCommand::processOutput(const TQString &output)
{
if (hexOutput()) {
- TQString hexString = output.mid(output.tqfind('\n')+1);
+ TQString hexString = output.mid(output.find('\n')+1);
int i=0;
TQString aChar = hexString.mid(i,2);
TQString result;
@@ -295,7 +295,7 @@ void ATCommand::extractParameters()
{
// kdDebug() << "Arg String: " << cmdString() << endl;
- int pos = cmdString().tqfind("=");
+ int pos = cmdString().find("=");
if (pos < 0) return;
TQString paraString = cmdString().mid(pos+1);