summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxexec.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-27 11:37:01 +0200
committerNoel Grandin <noel@peralex.com>2015-07-28 08:35:34 +0200
commit01075a7274bd3921501d382a71720581a48bfd66 (patch)
tree7f748dfa03ed10666d15dbfa2481cf03171e644b /basic/source/sbx/sbxexec.cxx
parent9072c5c8551c0bc512865ab15b1054c78706f1f3 (diff)
inline the "old" SbxErr constants
Change-Id: I1c54c792e0397d61c97d5067963b343f912275fc
Diffstat (limited to 'basic/source/sbx/sbxexec.cxx')
-rw-r--r--basic/source/sbx/sbxexec.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/basic/source/sbx/sbxexec.cxx b/basic/source/sbx/sbxexec.cxx
index ea843ade22a9..ab9a0f029b94 100644
--- a/basic/source/sbx/sbxexec.cxx
+++ b/basic/source/sbx/sbxexec.cxx
@@ -55,7 +55,7 @@ static const sal_Unicode* Symbol( const sal_Unicode* p, OUString& rSym )
// A symbol had to begin with a alphabetic character or an underline
if( !rtl::isAsciiAlpha( *p ) && *p != '_' )
{
- SbxBase::SetError( SbxERR_SYNTAX );
+ SbxBase::SetError( ERRCODE_SBX_SYNTAX );
}
else
{
@@ -105,7 +105,7 @@ static SbxVariable* QualifiedName
}
}
else
- SbxBase::SetError( SbxERR_SYNTAX );
+ SbxBase::SetError( ERRCODE_SBX_SYNTAX );
*ppBuf = p;
if( refVar.Is() )
refVar->AddFirstRef();
@@ -249,7 +249,7 @@ static SbxVariable* Assign( SbxObject* pObj, SbxObject* pGbl, const sal_Unicode*
// Assign only onto properties!
if( refVar->GetClass() != SbxCLASS_PROPERTY )
{
- SbxBase::SetError( SbxERR_BAD_ACTION );
+ SbxBase::SetError( ERRCODE_SBX_BAD_ACTION );
refVar.Clear();
}
else
@@ -335,7 +335,7 @@ static SbxVariable* Element
}
}
else
- SbxBase::SetError( SbxERR_NO_METHOD );
+ SbxBase::SetError( ERRCODE_SBX_NO_METHOD );
}
*ppBuf = p;
if( refVar.Is() )
@@ -358,7 +358,7 @@ SbxVariable* SbxObject::Execute( const OUString& rTxt )
}
if( *p++ != '[' )
{
- SetError( SbxERR_SYNTAX ); break;
+ SetError( ERRCODE_SBX_SYNTAX ); break;
}
pVar = Assign( this, this, &p );
if( !pVar )
@@ -368,7 +368,7 @@ SbxVariable* SbxObject::Execute( const OUString& rTxt )
p = SkipWhitespace( p );
if( *p++ != ']' )
{
- SetError( SbxERR_SYNTAX ); break;
+ SetError( ERRCODE_SBX_SYNTAX ); break;
}
}
return pVar;
@@ -387,7 +387,7 @@ SbxVariable* SbxObject::FindQualified( const OUString& rName, SbxClassType t )
p = SkipWhitespace( p );
if( *p )
{
- SetError( SbxERR_SYNTAX );
+ SetError( ERRCODE_SBX_SYNTAX );
}
return pVar;
}