| Summary: | [PATCH] substituting %U,%u,etc when printing footer | ||
|---|---|---|---|
| Product: | [Applications] kate | Reporter: | Gregorio Guidi <greg_g> |
| Component: | general | Assignee: | KWrite Developers <kwrite-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | kate-print-footer.patch | ||
|
Description
Gregorio Guidi
2005-01-18 19:04:12 UTC
Created attachment 9155 [details]
kate-print-footer.patch
CVS commit by alund:
Patch from Gregorio Guidi
BUG: 97373
M +1 -1 kateprinter.cpp 1.15
--- kdelibs/kate/part/kateprinter.cpp #1.14:1.15
@@ -246,5 +246,5 @@ bool KatePrinter::print (KateDocument *d
int pos = reTags.search( footerTags );
QString rep;
- while ( pos > 0 )
+ while ( pos > -1 )
{
rep = tags[reTags.cap( 1 )];
|