summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-15 11:05:19 +0200
committerNoel Grandin <noel@peralex.com>2013-11-19 10:29:31 +0200
commit610b2b94b33b0fc2d79cd515f9e293ca1c2610e8 (patch)
tree6eab2639cb8104ca54daa3f7a2ebd83ef1566cf0 /basic
parent2c35fff7eca3a143d28dc75e6a73fe1101d2af77 (diff)
remove unnecessary use of OUString constructor when assigning
change code like aStr = OUString("xxxx"); to aStr = "xxxx"; Change-Id: Ib981a5cc735677ec5dba76ef9279a107d22e99d4
Diffstat (limited to 'basic')
-rw-r--r--basic/source/comp/io.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/comp/io.cxx b/basic/source/comp/io.cxx
index 55877b065205..90e3dbb55a20 100644
--- a/basic/source/comp/io.cxx
+++ b/basic/source/comp/io.cxx
@@ -115,7 +115,7 @@ void SbiParser::Line()
aGen.Statement();
KeywordSymbolInfo aInfo;
- aInfo.m_aKeywordSymbol = OUString( "line" );
+ aInfo.m_aKeywordSymbol = "line";
aInfo.m_eSbxDataType = GetType();
aInfo.m_eTok = SYMBOL;
@@ -278,7 +278,7 @@ void SbiParser::Name()
aGen.Statement();
KeywordSymbolInfo aInfo;
- aInfo.m_aKeywordSymbol = OUString( "name" );
+ aInfo.m_aKeywordSymbol = "name";
aInfo.m_eSbxDataType = GetType();
aInfo.m_eTok = SYMBOL;