| Summary: | "Clean spaces" in Kmail composer removes all commas in the mail | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | Claudius Wettstein <claudius.wettstein> |
| Component: | general | Assignee: | Allen Winter <winter> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Claudius Wettstein
2006-06-02 23:30:55 UTC
Must be a typo, right? --- kmcomposewin.cpp.orig 2006-06-03 00:08:14.070995984 +0200 +++ kmcomposewin.cpp 2006-06-03 00:08:17.279373851 +0200 @@ -4016,7 +4016,7 @@ } // Squeeze tabs and spaces - QRegExp squeeze( "[\t, ]+" ); + QRegExp squeeze( "[\t ]+" ); s.replace( squeeze, QChar( ' ' ) ); // Remove trailing whitespace yep. my fault. I'll fix. SVN commit 547861 by winterz: Don't remove commas when cleaning whitespace. BUGS: 128528 M +1 -1 kmcomposewin.cpp --- branches/KDE/3.5/kdepim/kmail/kmcomposewin.cpp #547860:547861 @@ -4023,7 +4023,7 @@ } // Squeeze tabs and spaces - QRegExp squeeze( "[\t, ]+" ); + QRegExp squeeze( "[\t ]+" ); s.replace( squeeze, QChar( ' ' ) ); // Remove trailing whitespace |