summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-03-23 12:04:52 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-03-23 12:04:52 +0000
commit93e6f897c40274d87943b04b62ed9f34897708e5 (patch)
treec24cdaa192e099b29adb1d2b2743e1bede582f89 /xmlhelp
parent2f6ed28fd693c78ed56df9ad663cdbac794a2b00 (diff)
INTEGRATION: CWS hc680pb3 (1.15.30); FILE MERGED
2005/03/04 10:40:17 abi 1.15.30.1: #i38426# adding events to get the title
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/treeview/tvread.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xmlhelp/source/treeview/tvread.cxx b/xmlhelp/source/treeview/tvread.cxx
index dacd09fb392c..6c34814e8970 100644
--- a/xmlhelp/source/treeview/tvread.cxx
+++ b/xmlhelp/source/treeview/tvread.cxx
@@ -88,16 +88,16 @@ namespace treeview {
void setTitle( const char* itle )
{
- title = rtl::OUString( (sal_Char*)(itle),
- strlen( itle ),
- RTL_TEXTENCODING_UTF8 );
+ title += rtl::OUString( (sal_Char*)(itle),
+ strlen( itle ),
+ RTL_TEXTENCODING_UTF8 );
}
void setTitle( const XML_Char* itle,int len )
{
- title = rtl::OUString( (sal_Char*)(itle),
- len,
- RTL_TEXTENCODING_UTF8 );
+ title += rtl::OUString( (sal_Char*)(itle),
+ len,
+ RTL_TEXTENCODING_UTF8 );
}
void setId( const char* d )