diff options
Diffstat (limited to 'conduits/malconduit')
-rw-r--r-- | conduits/malconduit/mal-conduit.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conduits/malconduit/mal-conduit.cc b/conduits/malconduit/mal-conduit.cc index 10f1352..69a3f19 100644 --- a/conduits/malconduit/mal-conduit.cc +++ b/conduits/malconduit/mal-conduit.cc @@ -309,8 +309,8 @@ void MALConduit::printLogMessage(TQString msg) FUNCTIONSETUP; // Remove the pseudo-progressbar: TQString newmsg(msg); - newmsg.tqreplace( TQRegExp("^\\s*\\.*\\s*"), ""); - newmsg.tqreplace( TQRegExp("\\s*\\.*\\s*$"), ""); + newmsg.replace( TQRegExp("^\\s*\\.*\\s*"), ""); + newmsg.replace( TQRegExp("\\s*\\.*\\s*$"), ""); if (newmsg.length()>0) { emit logMessage(newmsg); |