summaryrefslogtreecommitdiff
path: root/reportbuilder
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2014-11-10 15:05:25 +0100
committerNoel Grandin <noelgrandin@gmail.com>2014-11-12 11:04:11 +0000
commitda40cac540e7d735edbe9069b3c8ec6af4530208 (patch)
treef2abda7281129e13f588c77b18780a7090c8405f /reportbuilder
parentbb437029c1e5331bcc3f8fb2fc87837142a52f33 (diff)
Fix common typos. No automatic tools. Handmade…
Change-Id: I1ab4e23b0539f8d39974787f226e57a21f96e959 Reviewed-on: https://gerrit.libreoffice.org/12164 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'reportbuilder')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java4
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java4
6 files changed, 8 insertions, 8 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule.java b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule.java
index 68016d415c1a..b54a41baf506 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/StarReportModule.java
@@ -38,7 +38,7 @@ public class StarReportModule extends AbstractModule
*
* @param subSystem the subSystem.
* @throws ModuleInitializeException
- * if an error ocurred while initializing the module.
+ * if an error occurred while initializing the module.
*/
public void initialize(final SubSystem subSystem)
throws ModuleInitializeException
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java b/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
index b04cc631a24b..b6e63d0e3162 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/loader/InputRepositoryLoader.java
@@ -99,7 +99,7 @@ public class InputRepositoryLoader implements ResourceLoader
{
if (!isSupportedKey(parent))
{
- throw new ResourceKeyCreationException("Assertation: Unsupported parent key type");
+ throw new ResourceKeyCreationException("Assertion: Unsupported parent key type");
}
final InputResourceKey parentKey = (InputResourceKey) parent.getIdentifier();
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement.java b/reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement.java
index 30262fd1ef92..5e7b268eecda 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/model/FormattedTextElement.java
@@ -21,7 +21,7 @@ import org.jfree.report.expressions.FormulaExpression;
/**
* A formatted text element takes a formula, evaluates it and formats the
- * given element using some arbitary style. (As this is totally undocumented,
+ * given element using some arbitrary style. (As this is totally undocumented,
* we leave this out for now. Either we'll insert a field there or we call
* an UNO-component to do the formatting.
*
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement.java b/reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement.java
index d2f2d3cd8de1..59dabe01d53f 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/model/ReportElement.java
@@ -65,7 +65,7 @@ public abstract class ReportElement extends Element
* element will only be printed, if there was at least one change.
*
* @return true, if repeated values should be printed, false if repeated
- * values should be surpressed.
+ * values should be suppressed.
*/
public boolean isPrintRepeatedValues()
{
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
index 08285f6ec080..9c579e84df18 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/OfficeDocumentReportTarget.java
@@ -141,7 +141,7 @@ public abstract class OfficeDocumentReportTarget extends AbstractReportTarget
public static final String FAILED = "Failed";
public static final String VERTICAL_POS = "vertical-pos";
private static final String ZERO_CM = "0cm";
- /** the verison of the ODF specification to which generated documents
+ /** the version of the ODF specification to which generated documents
* shall conform. */
public static final String ODF_VERSION = "1.2";
@@ -341,7 +341,7 @@ public abstract class OfficeDocumentReportTarget extends AbstractReportTarget
*
* @param report the report object.
* @throws DataSourceException if there was an error accessing the datasource
- * @throws ReportProcessingException if some other error occured.
+ * @throws ReportProcessingException if some other error occurred.
*/
public void startReport(final ReportStructureRoot report)
throws DataSourceException, ReportProcessingException
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
index 0023856170c0..3f3fe44e3476 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/text/TextRawReportTarget.java
@@ -215,7 +215,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget
{
// create the master page for the report-header.
// If there is a page-header or footer in the report that gets
- // surpressed on the report-header, we have to insert a pagebreak
+ // suppressed on the report-header, we have to insert a pagebreak
// afterwards.
final String activePageFooter;
@@ -414,7 +414,7 @@ public class TextRawReportTarget extends OfficeDocumentReportTarget
* @throws org.jfree.report.DataSourceException
* if there was an error accessing the datasource
* @throws org.jfree.report.ReportProcessingException
- * if some other error occured.
+ * if some other error occurred.
*/
@Override
public void startReport(final ReportStructureRoot report)