summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 )