summaryrefslogtreecommitdiff
path: root/basic/source/runtime/methods.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-27 11:31:24 +0200
committerNoel Grandin <noel@peralex.com>2015-07-28 08:35:34 +0200
commit9072c5c8551c0bc512865ab15b1054c78706f1f3 (patch)
treef3e800f6b4f74306ae1bef5ae2b574568e69b690 /basic/source/runtime/methods.cxx
parent95548d827dff41156ae46f391d73f358dad1b32f (diff)
convert SbxFlagsBits to scoped enum
Change-Id: I3dd699ca675be2ff4a8bfb7938bd5d43719b304c
Diffstat (limited to 'basic/source/runtime/methods.cxx')
-rw-r--r--basic/source/runtime/methods.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 6ed4d1cdaadd..f497f715eefe 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -4408,7 +4408,7 @@ RTLFUNC(StrConv)
SbxVariable* pNew = new SbxVariable( SbxBYTE );
pNew->PutByte(*pChar);
pChar++;
- pNew->SetFlag( SBX_WRITE );
+ pNew->SetFlag( SbxFlagBits::Write );
short index = i;
if( bIncIndex )
{
@@ -4420,7 +4420,7 @@ RTLFUNC(StrConv)
SbxVariableRef refVar = rPar.Get(0);
SbxFlagBits nFlags = refVar->GetFlags();
- refVar->ResetFlag( SBX_FIXED );
+ refVar->ResetFlag( SbxFlagBits::Fixed );
refVar->PutObject( pArray );
refVar->SetFlags( nFlags );
refVar->SetParameters( NULL );