diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-11-16 10:33:15 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-11-16 10:33:15 +0000 |
commit | a4fa42ea34d390c9aa1547b151616cb3766514db (patch) | |
tree | 4bc56349ddb421b1d5c3e4810ca1e45e35328c3e /svx | |
parent | 59b635349a1882830c0f2880e20c113069719257 (diff) |
use of sal_Unicode
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/tabwin.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/form/tabwin.cxx b/svx/source/form/tabwin.cxx index 09c9980c9111..991ee3dcf3ca 100644 --- a/svx/source/form/tabwin.cxx +++ b/svx/source/form/tabwin.cxx @@ -2,9 +2,9 @@ * * $RCSfile: tabwin.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: oj $ $Date: 2000-11-06 07:07:42 $ + * last change: $Author: oj $ $Date: 2000-11-16 11:33:15 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -218,11 +218,11 @@ void FmFieldWinListBox::Command(const CommandEvent& rEvt) aLinkPtr( POINTER_LINKDATA ); UniString aCopyData = pTabWin->GetDatabaseName(); - aCopyData += char(11); + aCopyData += sal_Unicode(11); aCopyData += pTabWin->GetObjectName().getStr(); - aCopyData += char(11); + aCopyData += sal_Unicode(11); aCopyData += ::rtl::OUString::valueOf((sal_Int32)pTabWin->GetObjectType()).getStr(); - aCopyData += char(11); + aCopyData += sal_Unicode(11); SvLBoxEntry* pFirstSelected = FirstSelected(); if( pFirstSelected ) |