summaryrefslogtreecommitdiffstats
path: root/kandy/src/atcommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kandy/src/atcommand.cpp')
-rw-r--r--kandy/src/atcommand.cpp8
1 files changed, 4 insertions, 4 deletions
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);