summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-03-08 16:44:44 +0100
committerJulien Nabet <serval2412@yahoo.fr>2015-03-08 16:45:30 +0100
commit5f6fcb4e7c8c273ca4a0211bf1b6f99a20ef5feb (patch)
treef719a8e5e6f6ba3b301c7288a7fe05b27fa163da /basic
parentbb0cae0f967eed386b546dd7367c2cc1b274f555 (diff)
Typos
Change-Id: Ibc378fa5f515de61bb768b4ef082638b40c94e00
Diffstat (limited to 'basic')
-rw-r--r--basic/source/classes/sbunoobj.cxx4
-rw-r--r--basic/source/comp/exprgen.cxx2
-rw-r--r--basic/source/sbx/sbxvar.cxx4
3 files changed, 5 insertions, 5 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx
index 0ae9bd5e154d..ac69ddcb606b 100644
--- a/basic/source/classes/sbunoobj.cxx
+++ b/basic/source/classes/sbunoobj.cxx
@@ -2106,7 +2106,7 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
Any aRetAny = xPropSet->getPropertyValue( pProp->GetName() );
// The use of getPropertyValue (instead of using the index) is
// suboptimal, but the refactoring to XInvocation is already pending
- // Otherwise it is posible to use FastPropertySet
+ // Otherwise it is possible to use FastPropertySet
// take over the value from Uno to Sbx
unoToSbxValue( pVar, aRetAny );
@@ -2177,7 +2177,7 @@ void SbUnoObject::SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
xPropSet->setPropertyValue( pProp->GetName(), aAnyValue );
// The use of getPropertyValue (instead of using the index) is
// suboptimal, but the refactoring to XInvocation is already pending
- // Otherwise it is posible to use FastPropertySet
+ // Otherwise it is possible to use FastPropertySet
}
catch( const Exception& )
{
diff --git a/basic/source/comp/exprgen.cxx b/basic/source/comp/exprgen.cxx
index 4f42a4d103e4..85259806c6ef 100644
--- a/basic/source/comp/exprgen.cxx
+++ b/basic/source/comp/exprgen.cxx
@@ -229,7 +229,7 @@ void SbiExprList::Gen()
// For the present: trigger an error
pParser->Error( SbERR_NO_NAMED_ARGS );
- // Later, if Named Args at DECLARE is posible
+ // Later, if Named Args at DECLARE is possible
//for( sal_uInt16 i = 1 ; i < nParAnz ; i++ )
//{
// SbiSymDef* pDef = pPool->Get( i );
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 52b115f019be..410fe4b72c65 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -234,7 +234,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
sal_Unicode cType = ' ';
OUString aTmp( maName );
- // short type? Then fetch it, posible this is 0.
+ // short type? Then fetch it, possible this is 0.
SbxDataType et = GetType();
if( t == SbxNAME_SHORT_TYPES )
{
@@ -266,7 +266,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
aTmp += i->aName;
cType = ' ';
- // short type? Then fetch it, posible this is 0.
+ // short type? Then fetch it, possible this is 0.
if( t == SbxNAME_SHORT_TYPES )
{
if( nt <= SbxSTRING )