summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-03-29 18:13:39 +0100
committerThomas Arnhold <thomas@arnhold.org>2014-03-29 19:16:18 +0100
commit7d3b9d3333aa1aaa1066863f95e29e506e21ad52 (patch)
tree41079761a8d9ce0f65015d84bb3e431f5d0d0f0e /package
parent8bb09efc92fe4de373f4ed4759f29108feb8cc3a (diff)
typo: optimisation -> optimization
Diffstat (limited to 'package')
-rw-r--r--package/source/zippackage/ZipPackage.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/zippackage/ZipPackage.cxx b/package/source/zippackage/ZipPackage.cxx
index 032ee5d61a61..7272f9a4eb97 100644
--- a/package/source/zippackage/ZipPackage.cxx
+++ b/package/source/zippackage/ZipPackage.cxx
@@ -629,7 +629,7 @@ void SAL_CALL ZipPackage::initialize( const uno::Sequence< Any >& aArguments )
m_xContext );
Any aAny = aContent.getPropertyValue("Size");
sal_uInt64 aSize = 0;
- // kind of optimisation: treat empty files as nonexistent files
+ // kind of optimization: treat empty files as nonexistent files
// and write to such files directly. Note that "Size" property is optional.
bool bHasSizeProperty = aAny >>= aSize;
if( !bHasSizeProperty || ( bHasSizeProperty && aSize ) )