this should clean-up kdebase of all of overkills of krazy:exclude of QString::null lines.

as long as C++ std clause 6.8 states (if I get it right), the diff should be OK, still can only compile with gcc-4.2...

svn path=/trunk/KDE/kdebase/apps/konsole/; revision=701136
This commit is contained in:
Arto Hytönen
2007-08-17 12:14:28 +00:00
parent f39a272a66
commit d0e0ca3c4f
3 changed files with 4 additions and 4 deletions

View File

@@ -93,7 +93,7 @@ QString ProcessInfo::format(const QString& input) const
output.replace("%d",formatShortDir(dir));
// remove any remaining %[LETTER] sequences
// output.replace(QRegExp("%\\w"),QString::null); //krazy:exclude=nullstrassign for old broken gcc
// output.replace(QRegExp("%\\w"), QString());
return output;
}