diff options
author | Andras Timar <atimar@suse.com> | 2013-02-20 17:24:33 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-20 17:25:30 +0100 |
commit | b37a07f2da6c4fcc1a01cc3ea547c558c23edd71 (patch) | |
tree | 0fc40179b95c3fb5511afdff378217b3bf4a818b /package | |
parent | 28300209604ee1bb8e5050322b29e95a07f679d8 (diff) |
typo: allways -> always
Change-Id: I48bd0161dd76c36eeaa39c45e9539584a4ef6841
Diffstat (limited to 'package')
-rw-r--r-- | package/source/xstor/xfactory.cxx | 2 | ||||
-rw-r--r-- | package/source/xstor/xstorage.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/package/source/xstor/xfactory.cxx b/package/source/xstor/xfactory.cxx index 29a17902a101..cd88abd2d44f 100644 --- a/package/source/xstor/xfactory.cxx +++ b/package/source/xstor/xfactory.cxx @@ -125,7 +125,7 @@ uno::Reference< uno::XInterface > SAL_CALL OStorageFactory::createInstanceWithAr OSL_FAIL( "Wrong second argument!\n" ); throw lang::IllegalArgumentException(); // TODO: } - // it's allways possible to read written storage in this implementation + // it's always possible to read written storage in this implementation nStorageMode |= embed::ElementModes::READ; } diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx index aa65875671d4..dc1c51fef1c2 100644 --- a/package/source/xstor/xstorage.cxx +++ b/package/source/xstor/xstorage.cxx @@ -2612,7 +2612,7 @@ uno::Reference< embed::XStorage > SAL_CALL OStorage::openStorageElement( && !( nStorageMode & embed::ElementModes::WRITE ) ) throw io::IOException( OSL_LOG_PREFIX, uno::Reference< uno::XInterface >() ); // TODO: access denied - // it's allways possible to read written storage in this implementation + // it's always possible to read written storage in this implementation nStorageMode |= embed::ElementModes::READ; uno::Reference< embed::XStorage > xResult; @@ -2924,7 +2924,7 @@ void SAL_CALL OStorage::copyStorageElementLastCommitTo( if ( m_pData->m_nStorageType == embed::StorageFormats::OFOPXML && aStorName == "_rels" ) throw lang::IllegalArgumentException( OSL_LOG_PREFIX, uno::Reference< uno::XInterface >(), 1 ); // unacceptable storage name - // it's allways possible to read written storage in this implementation + // it's always possible to read written storage in this implementation sal_Int32 nStorageMode = embed::ElementModes::READ; try |