diff options
author | Ricardo Montania <ricardo@linuxafundo.com.br> | 2012-10-10 12:06:14 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-10-12 14:50:13 +0000 |
commit | ceb06a8f0906dd9bd7aa69b121a050eb4dcc861e (patch) | |
tree | 942619603a1b3271719fc5abf228b57d58935c67 /basctl | |
parent | 0b876ce56cbd63fbc44e5ba13433d0051fbc1108 (diff) |
766 gerrit patch, fix appendAscii in bastype2.cxx
Change-Id: I4409d1b0585a8c52cba14d1e67ccf776c6070c8a
Reviewed-on: https://gerrit.libreoffice.org/854
Reviewed-by: Olivier Hallot <olivier.hallot@alta.org.br>
Tested-by: Olivier Hallot <olivier.hallot@alta.org.br>
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/bastype2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/bastype2.cxx b/basctl/source/basicide/bastype2.cxx index db208138ed90..8ef1a92fe785 100644 --- a/basctl/source/basicide/bastype2.cxx +++ b/basctl/source/basicide/bastype2.cxx @@ -480,7 +480,7 @@ void TreeListBox::ImpCreateLibSubSubEntriesInVBAMode( SvLBoxEntry* pLibSubRootEn ModuleInfoHelper::getObjectName( xLib, aModName, sObjName ); if( !sObjName.isEmpty() ) { - aEntryNameBuf.appendAscii( " (" ); + aEntryNameBuf.append( " (" ); aEntryNameBuf.append(sObjName); aEntryNameBuf.append(')'); } |