summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-07-08 18:47:45 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-07-08 18:48:42 +0900
commit72ecba52c7e52c53338404c1d002e47f08712137 (patch)
tree8014def135675d340698460ef7bcac7bfa9ac787
parentb436ef9d55d1a02fe9f5e9ae1fd41d5391f7d98e (diff)
fixed typos in comments
-rw-r--r--binfilter/inc/bf_xmloff/xmlexppr.hxx4
-rw-r--r--lotuswordpro/source/filter/lwptablelayout.cxx2
-rw-r--r--xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/DefColWidth.java2
-rw-r--r--xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java2
-rw-r--r--xmerge/source/xmerge/java/org/openoffice/xmerge/util/ColourConverter.java2
5 files changed, 6 insertions, 6 deletions
diff --git a/binfilter/inc/bf_xmloff/xmlexppr.hxx b/binfilter/inc/bf_xmloff/xmlexppr.hxx
index 77bdaa5dd..616bc3af1 100644
--- a/binfilter/inc/bf_xmloff/xmlexppr.hxx
+++ b/binfilter/inc/bf_xmloff/xmlexppr.hxx
@@ -121,10 +121,10 @@ public:
::com::sun::star::beans::XPropertySet > rPropSet ) const
{ return _Filter(rPropSet, sal_False); }
- /** Like Filter(), excepti that:
+ /** Like Filter(), except that:
* - only properties that have the map flag MID_FLAG_DEFAULT_ITEM_EXPORT
* set are exported,
- * - instead of the property's value, its defualt value is exported.
+ * - instead of the property's value, its default value is exported.
*/
::std::vector< XMLPropertyState > FilterDefaults(
const ::com::sun::star::uno::Reference<
diff --git a/lotuswordpro/source/filter/lwptablelayout.cxx b/lotuswordpro/source/filter/lwptablelayout.cxx
index f16b74eb8..0942d7285 100644
--- a/lotuswordpro/source/filter/lwptablelayout.cxx
+++ b/lotuswordpro/source/filter/lwptablelayout.cxx
@@ -620,7 +620,7 @@ void LwpTableLayout::RegisterColumns()
// justifiable columns will share the remain width averagely
dDefaultColumn = dTableWidth/nJustifiableColumn;
- // register defualt column style
+ // register default column style
XFColStyle *pColStyle = new XFColStyle();
pColStyle->SetWidth(static_cast<float>(dDefaultColumn));
diff --git a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/DefColWidth.java b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/DefColWidth.java
index bb2f2afce..a0ea983d9 100644
--- a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/DefColWidth.java
+++ b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/DefColWidth.java
@@ -36,7 +36,7 @@ import org.openoffice.xmerge.util.EndianConverter;
import org.openoffice.xmerge.converter.xml.sxc.pexcel.PocketExcelConstants;
/**
- * Represents a BIFF record defiuning the defualt column width
+ * Represents a BIFF record defining the default column width
*/
public class DefColWidth implements BIFFRecord {
diff --git a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
index 67f3ae3b0..ca59dcc29 100644
--- a/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
+++ b/xmerge/source/pexcel/java/org/openoffice/xmerge/converter/xml/sxc/pexcel/records/ExtendedFormat.java
@@ -88,7 +88,7 @@ org.openoffice.xmerge.converter.xml.OfficeConstants {
}
/**
- * Constructs a pocket Excel Document using defualt values and sets the
+ * Constructs a pocket Excel Document using default values and sets the
* font index using the specified attribute
*
* @param ixfnt index of the font this format should use
diff --git a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/ColourConverter.java b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/ColourConverter.java
index 75cd4ba41..927e0712e 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/util/ColourConverter.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/util/ColourConverter.java
@@ -34,7 +34,7 @@ import java.awt.Color;
* Utility class mapping RGB colour specifications to the colour indices used
* in the Pocket PC. The original converter was written for use with Pocket
* Word it was later put into the utils so Pocket excel could use this code
- * also. For this reason the defualt values are those used by Pocket Word but
+ * also. For this reason the default values are those used by Pocket Word but
* a colour table can be passed in through the constructor to map the 16
* values to a colour table.
*