commit ad4d091fdb25f2fe769f1c86ee22c1d9d03c72b6 parent 92d60745a879dc4f29f1340d0995991f6bb576f6 Author: cfillion <cfillion@users.noreply.github.com> Date: Thu, 4 Feb 2016 15:54:53 -0500 remove a superfluous new line before each header in the report dialog Diffstat:
M | src/report.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/report.cpp b/src/report.cpp @@ -50,7 +50,7 @@ void ReportDialog::printHeader(const char *title) if(m_stream.tellp()) m_stream << NL; - m_stream << NL << SEP << ' ' << title << ": " << SEP << NL; + m_stream << SEP << ' ' << title << ": " << SEP << NL; } void ReportDialog::printChangelog(const string &changelog)