summaryrefslogtreecommitdiff
path: root/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-31 09:39:21 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-07-31 15:10:24 +0200
commitcaa626809433b06b2a6f5eff80c6d0d2f4d71b7e (patch)
tree1076b9178aee5ad462f1203a552666ca96e2a4c5 /reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor
parent40c250cae0c75b1762eb89caf66c14d37ffe5288 (diff)
Fix typos
Change-Id: I2b9361433df39f66ec8328262a3128cf7294b6e1 Reviewed-on: https://gerrit.libreoffice.org/76720 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java2
4 files changed, 4 insertions, 4 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController.java
index 52ce34274de4..0bf40b9dcd28 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/ImageElementLayoutController.java
@@ -157,7 +157,7 @@ public class ImageElementLayoutController
final Section columns = (Section) table.findFirstChild(OfficeNamespaces.TABLE_NS, OfficeToken.TABLE_COLUMNS);
if (columns.getNodeCount() <= columnPos + colSpan)
{
- // the colspan is to large. The table definition is therefore invalid. We do not try to fix this.
+ // the colspan is too large. The table definition is therefore invalid. We do not try to fix this.
LOGGER.warn(
"The Table's defined columns do not match the col-span or col-position. Unable to calculate the image-size.");
return null;
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java
index 38cd53f13425..11a3693463a0 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeGroupSectionLayoutController.java
@@ -34,7 +34,7 @@ import org.jfree.report.structure.Element;
/**
* This layoutcontroller simply checks, whether the parent layout controller
- * is a OfficeGroupLayoutController and whether this layout controller is
+ * is an OfficeGroupLayoutController and whether this layout controller is
* processing the normal flow or an repeating section. If a repeating section
* is being processed, an marker attribute is added to the element's call
* to OutputProcessor.startElement() and OutputProcessor.endElement().
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java
index 2b095a47dfaa..9030a18ef887 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/OfficeTableTemplateLayoutController.java
@@ -49,7 +49,7 @@ public class OfficeTableTemplateLayoutController extends SectionLayoutController
* Initializes the layout controller. This method is called exactly once. It is the creators responsibility to call
* this method.
*
- * <p>Calling initialize after the first advance must result in a IllegalStateException.</p>
+ * <p>Calling initialize after the first advance must result in an IllegalStateException.</p>
*
* @param node the currently processed object or layout node.
* @param flowController the current flow controller.
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java
index cc543197a77a..b61c640bf5e5 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/layoutprocessor/TableCellLayoutController.java
@@ -43,7 +43,7 @@ import org.pentaho.reporting.libraries.base.util.ObjectUtilities;
/**
* Before writing the table cell, we have to evaluate the children of the cell. The cell itself can either be empty or it
- * has a one ore more paragraphs inside. The paragraph contains a single report element, but may contain additional
+ * has one ore more paragraphs inside. The paragraph contains a single report element, but may contain additional
* other content.
*
* @since 05.03.2007