summaryrefslogtreecommitdiff
path: root/reportbuilder
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-25 00:42:27 +0200
committerAndrea Gelmini <andrea.gelmini@gelma.net>2019-07-25 07:07:25 +0200
commit5ccc8124a03cffca3a1848f754524a06a063cb51 (patch)
tree3456a0c42c38a1936680a4266fbb76c4d585025f /reportbuilder
parented882d693f37779e3a09641e7cd43b7a925d2312 (diff)
Fix typos
Change-Id: I59a0fd175fa5185c15d093d2d9bed9f95bb4cfd5 Reviewed-on: https://gerrit.libreoffice.org/76280 Tested-by: Jenkins Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'reportbuilder')
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection.java2
-rw-r--r--reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection.java b/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection.java
index 90647e45bf95..eee9ad5531bd 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/model/OfficeStylesCollection.java
@@ -30,7 +30,7 @@ import org.jfree.report.structure.Element;
* style, from which properties are inherited.</p>
*
* <p>Style names are unique within the family, no matter whether the style is an
- * automatic style, an common style or a master style.</p>
+ * automatic style, a common style or a master style.</p>
*
* <p>The contents of this element are the union of the 'styles.xml' file (if it
* exists), the font-declarations and auto-styles of the document-content.xml
diff --git a/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java b/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java
index db8fe0fd18d0..b1f1a46f6bd0 100644
--- a/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java
+++ b/reportbuilder/java/org/libreoffice/report/pentaho/output/StyleUtilities.java
@@ -373,7 +373,7 @@ public class StyleUtilities
stylesCollection.getCommonStyles().getStyle(styleFamily, styleName);
if (currentCommon != null)
{
- // handle an common style ..
+ // handle a common style ..
final OfficeStyle derivedStyle =
deriveCommonStyle(currentCommon, styleFamily, styleName,
generator, commonCollection, predefCollection);
@@ -385,7 +385,7 @@ public class StyleUtilities
commonCollection.getCommonStyles().getStyle(styleFamily, styleName);
if (commonCommon != null)
{
- // handle an common style ..
+ // handle a common style ..
final OfficeStyle derivedStyle =
deriveCommonStyle(commonCommon, styleFamily, styleName,
generator, commonCollection, predefCollection);
@@ -410,7 +410,7 @@ public class StyleUtilities
predefCollection.getCommonStyles().getStyle(styleFamily, styleName);
if (predefCommon != null)
{
- // handle an common style ..
+ // handle a common style ..
final OfficeStyle derivedStyle =
deriveCommonStyle(predefCommon, styleFamily, styleName,
generator, commonCollection, predefCollection);