diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-05-04 10:34:36 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-05-05 23:35:06 +0200 |
commit | a940826162dc93f5543f81fc8fe5d8618c4a6efb (patch) | |
tree | df64a2f1cda70234e4f77d7d86cf5ccc9c88b99f /reportbuilder/java | |
parent | 942f50e7d379ba5137f4a64d39bd06d6decad9e8 (diff) |
Fix typos
To complete commit 0ef94e2b559547bc4e906e7f24e57ff5d642e108
and f12096272e684ddcd8ffa4e34dcb0a680cc594c2
Change-Id: Ie86bbfbd58dd728a013bef221e4d5c8fbcaf8e03
Reviewed-on: https://gerrit.libreoffice.org/37199
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'reportbuilder/java')
5 files changed, 9 insertions, 9 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FixedContentReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FixedContentReadHandler.java index 7f5297c129d6..9896c7a935d2 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FixedContentReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FixedContentReadHandler.java @@ -68,7 +68,7 @@ public class FixedContentReadHandler extends ElementReadHandler if (OfficeNamespaces.OOREPORT_NS.equals(uri)) { - // expect a report control. The control will modifiy the current + // expect a report control. The control will modify the current // element (as we do not separate the elements that strictly ..) if ("report-control".equals(tagName)) { diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormattedTextReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormattedTextReadHandler.java index 03cd8f9eef8b..7810f972e861 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormattedTextReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/FormattedTextReadHandler.java @@ -89,8 +89,8 @@ public class FormattedTextReadHandler extends ElementReadHandler { if (OfficeNamespaces.OOREPORT_NS.equals(uri)) { - // expect a report control. The control will modifiy the current - // element (as we do not separate the elements that strictly ..) + // expect a report control. The control will modify the current + // element (as we do not separate the elements that strictly...) if ("report-control".equals(tagName)) { return new IgnoreAnyChildReadHandler(); diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ImageReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ImageReadHandler.java index 5a0be92e478a..8c06ac021606 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ImageReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/ImageReadHandler.java @@ -94,8 +94,8 @@ public class ImageReadHandler extends ElementReadHandler if (OfficeNamespaces.OOREPORT_NS.equals(uri)) { - // expect a report control. The control will modifiy the current - // element (as we do not separate the elements that strictly ..) + // expect a report control. The control will modify the current + // element (as we do not separate the elements that strictly...) if ("report-control".equals(tagName)) { return new IgnoreAnyChildReadHandler(); diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/MasterDetailReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/MasterDetailReadHandler.java index 498c45c0a03d..da1eff8b72d6 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/MasterDetailReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/MasterDetailReadHandler.java @@ -83,8 +83,8 @@ public class MasterDetailReadHandler extends ElementReadHandler { if (OfficeNamespaces.OOREPORT_NS.equals(uri) && "master-detail-field".equals(tagName)) { - // expect a report control. The control will modifiy the current - // element (as we do not separate the elements that strictly ..) + // expect a report control. The control will modify the current + // element (as we do not separate the elements that strictly...) return new MasterDetailReadHandler(element, true); } diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/SubDocumentReadHandler.java b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/SubDocumentReadHandler.java index e5aa0851f505..6706408beb11 100644 --- a/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/SubDocumentReadHandler.java +++ b/reportbuilder/java/org/libreoffice/report/pentaho/parser/rpt/SubDocumentReadHandler.java @@ -80,8 +80,8 @@ public class SubDocumentReadHandler extends NoCDATATextContentReadHandler { if (OfficeNamespaces.OOREPORT_NS.equals(uri)) { - // expect a report control. The control will modifiy the current - // element (as we do not separate the elements that strictly ..) + // expect a report control. The control will modify the current + // element (as we do not separate the elements that strictly...) if ("report-control".equals(tagName)) { return new IgnoreAnyChildReadHandler(); |