summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/tabvwshe.cxx
diff options
context:
space:
mode:
authorNiklas Nebel <nn@openoffice.org>2001-11-14 19:30:03 +0000
committerNiklas Nebel <nn@openoffice.org>2001-11-14 19:30:03 +0000
commit7aa78240e8e2e04cdc309c320b626e541468174f (patch)
tree6ba8bf7384fabc0f8eac08e33d00b0842cb5f0cb /sc/source/ui/view/tabvwshe.cxx
parent7b30bd6a10d10826da040db620f6074f60376754 (diff)
#94756# ScImportExport uses rtl::OUString also for ExportString
Diffstat (limited to 'sc/source/ui/view/tabvwshe.cxx')
-rw-r--r--sc/source/ui/view/tabvwshe.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/sc/source/ui/view/tabvwshe.cxx b/sc/source/ui/view/tabvwshe.cxx
index 44afb10b4a4a..4c7241306476 100644
--- a/sc/source/ui/view/tabvwshe.cxx
+++ b/sc/source/ui/view/tabvwshe.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: tabvwshe.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: nn $ $Date: 2001-08-21 18:38:03 $
+ * last change: $Author: nn $ $Date: 2001-11-14 20:30:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -129,7 +129,9 @@ String __EXPORT ScTabViewShell::GetSelectionText( BOOL bWholeWord )
ScImportExport aObj( pDoc, aRange );
aObj.SetFormulas( GetViewData()->GetOptions().GetOption( VOPT_FORMULAS ) );
- aObj.ExportString( aStrSelection );
+ rtl::OUString aExportOUString;
+ aObj.ExportString( aExportOUString );
+ aStrSelection = aExportOUString;
aStrSelection.ConvertLineEnd( LINEEND_CR );