Summary: | Patch for typo in kilestdactions.cpp | ||
---|---|---|---|
Product: | [Applications] kile | Reporter: | mark |
Component: | general | Assignee: | Michel Ludwig <michel.ludwig> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 2.1b5 | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | The patch just switches the blank and the \n |
Git commit 6168d2b20cf745f2ec19d24adee7c9d1cb039808 by Michel Ludwig. Committed on 12/03/2011 at 18:38. Pushed by mludwig into branch 'master'. Fix misplaced space character upon inserting a description list. Patch by Mark Morschh��user. BUG: 268043 M +1 -1 src/kilestdactions.cpp http://commits.kde.org/kile/6168d2b20cf745f2ec19d24adee7c9d1cb039808 |
Created attachment 57794 [details] The patch just switches the blank and the \n Version: 2.1b5 (using KDE 4.6.1) OS: Linux kilestdactions.cpp contains the code to create the \begin{description} text but it contains a typo: \n and " " should be switched. Reproducible: Always Steps to Reproduce: just click the Description-button Actual Results: The current button-code produces \begin{description} \item[]\n _\end{description} (_ is a blank) Expected Results: The button should produce \begin{description} \item[]_\n \end{description} (_ is a blank)