summaryrefslogtreecommitdiff
path: root/svx/source/editeng
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-11 11:59:10 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-11 11:59:10 +0000
commit36f18ea48c5f6b3ae0a709c98c3aa62ed2c5e4bd (patch)
tree48aa345f7224664e090fd10b26d79d3e13bc097a /svx/source/editeng
parent363b37fc485561214520bf9a9c4d8f79716cac3f (diff)
INTEGRATION: CWS sb19 (1.52.296); FILE MERGED
2004/12/08 22:39:13 sb 1.52.296.2: RESYNC: (1.52-1.53); FILE MERGED 2004/10/27 07:30:34 mba 1.52.296.1: #110407#: remove static BaseURL
Diffstat (limited to 'svx/source/editeng')
-rw-r--r--svx/source/editeng/impedit.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/editeng/impedit.cxx b/svx/source/editeng/impedit.cxx
index 14e5f6b553bc..dd7fa49c8477 100644
--- a/svx/source/editeng/impedit.cxx
+++ b/svx/source/editeng/impedit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: impedit.cxx,v $
*
- * $Revision: 1.53 $
+ * $Revision: 1.54 $
*
- * last change: $Author: obo $ $Date: 2004-11-16 16:02:30 $
+ * last change: $Author: rt $ $Date: 2005-01-11 12:59:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1415,7 +1415,7 @@ void ImpEditView::Paste( ::com::sun::star::uno::Reference< ::com::sun::star::dat
}
else
{
- aSel = pEditEngine->pImpEditEngine->InsertText( xDataObj, aSel.Min(), bUseSpecial && pEditEngine->pImpEditEngine->GetStatus().AllowPasteSpecial() );
+ aSel = pEditEngine->pImpEditEngine->InsertText( xDataObj, String(), aSel.Min(), bUseSpecial && pEditEngine->pImpEditEngine->GetStatus().AllowPasteSpecial() );
}
aPasteOrDropInfos.nEndPara = pEditEngine->pImpEditEngine->GetEditDoc().GetPos( aSel.Max().GetNode() );
@@ -1799,7 +1799,7 @@ void ImpEditView::drop( const ::com::sun::star::datatransfer::dnd::DropTargetDro
aPasteOrDropInfos.nStartPara = pEditEngine->pImpEditEngine->GetEditDoc().GetPos( aPaM.GetNode() );
pEditEngine->pImpEditEngine->aBeginPasteOrDropHdl.Call( &aPasteOrDropInfos );
- EditSelection aNewSel = pEditEngine->pImpEditEngine->InsertText( xDataObj, aPaM, pEditEngine->pImpEditEngine->GetStatus().AllowPasteSpecial() );
+ EditSelection aNewSel = pEditEngine->pImpEditEngine->InsertText( xDataObj, String(), aPaM, pEditEngine->pImpEditEngine->GetStatus().AllowPasteSpecial() );
aPasteOrDropInfos.nEndPara = pEditEngine->pImpEditEngine->GetEditDoc().GetPos( aNewSel.Max().GetNode() );
pEditEngine->pImpEditEngine->aEndPasteOrDropHdl.Call( &aPasteOrDropInfos );