diff options
Diffstat (limited to 'kppp/accounting.cpp')
-rw-r--r-- | kppp/accounting.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kppp/accounting.cpp b/kppp/accounting.cpp index b9280eda..6ee8ee45 100644 --- a/kppp/accounting.cpp +++ b/kppp/accounting.cpp @@ -384,11 +384,11 @@ void ExecutableAccounting::gotData(KProcess */*proc*/, char *buffer, int /*bufle // split string TQString b(buffer); - pos = b.tqfind(':'); + pos = b.find(':'); while(pos != -1 && nFields < 8) { field[nFields++] = b.mid(last_pos, pos-last_pos); last_pos = pos+1; - pos = b.tqfind(':', last_pos); + pos = b.find(':', last_pos); } for(int i = 0; i < nFields;i++) @@ -398,9 +398,9 @@ void ExecutableAccounting::gotData(KProcess */*proc*/, char *buffer, int /*bufle TQString s(buffer); int del1, del2, del3; - del1 = s.tqfind(':'); - del2 = s.tqfind(':', del1+1); - del3 = s.tqfind(':', del2+1); + del1 = s.find(':'); + del2 = s.find(':', del1+1); + del3 = s.find(':', del2+1); if(del1 == -1 || del2 == -1 || del3 == -1) { // TODO: do something usefull here return; |