diff options
Diffstat (limited to 'arts/message')
-rw-r--r-- | arts/message/artsmessage.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arts/message/artsmessage.cc b/arts/message/artsmessage.cc index cef8c2ca6..f77ecd581 100644 --- a/arts/message/artsmessage.cc +++ b/arts/message/artsmessage.cc @@ -83,7 +83,7 @@ int main(int argc, char **argv) { KMessageBox::sorry(0, msg, i18n("Warning"), notifyOptions); } else if (args->isSet("i")) { TQString id = msg; - id.tqreplace(TQRegExp("[\\[\\]\\s=]"), "_"); + id.replace(TQRegExp("[\\[\\]\\s=]"), "_"); KMessageBox::information(0, msg, i18n("Informational"), id, notifyOptions); } else { KMessageBox::error(0, msg, i18n("Error"), notifyOptions); |