diff options
author | Chris Laplante <mostthingsweb@gmail.com> | 2014-05-14 14:15:38 -0400 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-17 12:38:38 +0000 |
commit | 3c1e30b77df4f34c4954bff37a08439ace7f2434 (patch) | |
tree | a5231657e37e3b2efb2ba438c43561bf5f27649c /reportbuilder | |
parent | f62de9113a4866f7152acbe0e8221c594b7a7b68 (diff) |
Correct common misspellings, and remove some ASCII art along the way.
Change-Id: I42787db31769e8bde984c5f4f0aa90335e889b1c
Reviewed-on: https://gerrit.libreoffice.org/9356
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org>
Diffstat (limited to 'reportbuilder')
4 files changed, 4 insertions, 6 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/module.properties b/reportbuilder/java/org/libreoffice/report/pentaho/module.properties index dad699e29e10..be552962a174 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/module.properties +++ b/reportbuilder/java/org/libreoffice/report/pentaho/module.properties @@ -22,7 +22,7 @@ module-info: name: factory-report-sun producer: The JFreeReport project - www.jfree.org/jfreereport description: XML-Parsers for OpenOffice.org report definitions. These definitions\ - are basicly similar to the old JFreeReport format, with some limited absolute\ + are basically similar to the old JFreeReport format, with some limited absolute\ positioning capabilities. version.major: 0 version.minor: 90 diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportTarget.java index f8ad55fcdcd0..d17641550e57 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportTarget.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/chart/ChartRawReportTarget.java @@ -218,8 +218,7 @@ public class ChartRawReportTarget extends OfficeDocumentReportTarget return; } - // All styles have to be processed or you will loose the paragraph-styles and inline text-styles. - + // All styles have to be processed or you will lose the paragraph-styles and inline text-styles. performStyleProcessing(attrs); final AttributeList attrList = buildAttributeList(attrs); diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java index a6bf1e891bfe..bf9d2ce83d58 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/spreadsheet/SpreadsheetRawReportTarget.java @@ -470,8 +470,7 @@ public class SpreadsheetRawReportTarget extends OfficeDocumentReportTarget // but we'll do this in the endElement, after we close this OfficeToken.TABLE_CELL } - // All styles have to be processed or you will loose the paragraph-styles and inline text-styles. - + // All styles have to be processed or you will lose the paragraph-styles and inline text-styles. performStyleProcessing(attrs); final AttributeList attrList = buildAttributeList(attrs); diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableCellReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableCellReadHandler.java index e987dbbe8712..f37ac00f7453 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableCellReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/table/TableCellReadHandler.java @@ -21,7 +21,7 @@ import org.libreoffice.report.pentaho.model.TableCellElement; import org.libreoffice.report.pentaho.parser.text.NoCDATATextContentReadHandler; /** - * A read handler for table-cell contents. This is basicly a text-content + * A read handler for table-cell contents. This is basically a text-content * read handler; we may extend this implementation later. * * @since 05.03.2007 |