summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-03-03 17:11:39 +0100
committerThomas Arnhold <thomas@arnhold.org>2013-03-03 17:14:16 +0100
commitf5ca04caca1b6888cdc6b00b8465a53e6d5cf38d (patch)
treecda73db2df15d821e0587f345edd7587953bdbdf /tools/source
parentecf00403376d13355fcf6fb7cd36b3500f19fc69 (diff)
Related to fdo#60724: correct spelling
Using the autocorrect list of LibreOffice extras/source/autotext/lang/en-US/acor/DocumentList.xml Change-Id: I8b93969bc0742c2e95b8b7db3c4c37691e8d3657 Script: http://pastebin.ca/2327716
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/generic/bigint.cxx2
-rw-r--r--tools/source/rc/resmgr.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index 2aedb0f46f00..49341cfb5d47 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -184,7 +184,7 @@ void BigInt::AddLong( BigInt& rB, BigInt& rErg )
k = 0;
rErg.nNum[i] = (sal_uInt16)(nZ & 0xffffL);
}
- // If an overflow occured, add to solution
+ // If an overflow occurred, add to solution
if (nZ & 0xff0000L) // or if(k)
{
rErg.nNum[i] = 1;
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx
index b962bab0ca01..4fe8e82f13ed 100644
--- a/tools/source/rc/resmgr.cxx
+++ b/tools/source/rc/resmgr.cxx
@@ -1870,7 +1870,7 @@ rtl::OUString SimpleResMgr::ReadString( sal_uInt32 nId )
// sal_uIntPtr nLen = pResHeader->GetLocalOff() - sizeof(RSHEADER_TYPE);
ResMgr::GetString( sReturn, (const sal_uInt8*)(pResHeader+1) );
- // not neccessary with te current implementation which holds the string table permanently, but to be sure ....
+ // not necessary with te current implementation which holds the string table permanently, but to be sure ....
// note: pFallback cannot be NULL here and is either the fallback or m_pResImpl
InternalResMgr::FreeGlobalRes( pResHeader, pResHandle );
if( m_pResImpl != pFallback )