summaryrefslogtreecommitdiff
path: root/basic/source/comp/symtbl.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-12-18 13:20:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-12-18 14:12:23 +0100
commit39ddeb53c04f7a8410a5146e2ce7b4acf204ad2b (patch)
treebaa06f2e6f9ebabee235b7673a19e415cec5e4b1 /basic/source/comp/symtbl.cxx
parentd9e2c2704466caaef52bdabf2689220ce6fa1cf7 (diff)
basic: Use appropriate OUString functions on string constants
Change-Id: I43f99ba6759b0f8f633af784beaec583dbab0b9e
Diffstat (limited to 'basic/source/comp/symtbl.cxx')
-rw-r--r--basic/source/comp/symtbl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/comp/symtbl.cxx b/basic/source/comp/symtbl.cxx
index 9cef215bec82..bb094e6079cf 100644
--- a/basic/source/comp/symtbl.cxx
+++ b/basic/source/comp/symtbl.cxx
@@ -500,7 +500,7 @@ SbiConstDef::SbiConstDef( const OUString& rName )
void SbiConstDef::Set( double n, SbxDataType t )
{
- aVal = ""; nVal = n; eType = t;
+ aVal.clear(); nVal = n; eType = t;
}
void SbiConstDef::Set( const OUString& n )