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.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kandy/src/atcommand.cpp b/kandy/src/atcommand.cpp
index 87a2cfdc..e43814b4 100644
--- a/kandy/src/atcommand.cpp
+++ b/kandy/src/atcommand.cpp
@@ -18,8 +18,8 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
As a special exception, permission is given to link this program
- with any edition of Qt, and distribute the resulting executable,
- without including the source code for Qt in the source distribution.
+ with any edition of TQt, and distribute the resulting executable,
+ without including the source code for TQt in the source distribution.
*/
#include "atcommand.h"
@@ -112,7 +112,7 @@ TQString ATCommand::cmdString()
TQString ATCommand::cmd()
{
if (mParameters.count() > 0) {
- TQString cmd = cmdString().left(cmdString().find("=") + 1);
+ TQString cmd = cmdString().left(cmdString().tqfind("=") + 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.find( '=' ) );
+ TQString id = mId.upper().left( mId.tqfind( '=' ) );
// 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.find('\n')+1);
+ TQString hexString = output.mid(output.tqfind('\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().find("=");
+ int pos = cmdString().tqfind("=");
if (pos < 0) return;
TQString paraString = cmdString().mid(pos+1);