diff options
Diffstat (limited to 'kppp/acctselect.cpp')
-rw-r--r-- | kppp/acctselect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kppp/acctselect.cpp b/kppp/acctselect.cpp index 4cad3aeb..fd456202 100644 --- a/kppp/acctselect.cpp +++ b/kppp/acctselect.cpp @@ -134,7 +134,7 @@ AccountingSelector::AccountingSelector(TQWidget *tqparent, bool _isnewaccount, c TQString AccountingSelector::fileNameToName(TQString s) { - s.tqreplace('_', " "); + s.replace('_', " "); return KURL::decode_string(s); } @@ -142,7 +142,7 @@ TQString AccountingSelector::fileNameToName(TQString s) { TQString AccountingSelector::nameToFileName(TQString s) { - s.tqreplace(' ', "_"); + s.replace(' ', "_"); return s; } |