diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-21 21:16:08 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-22 20:14:40 +0000 |
commit | 0f02bc189b6e89ca2e62d4bd6a2f407a9fd4ec3b (patch) | |
tree | e33175c301413ad98d2dff96659a054a03191b17 /include/svx/view3d.hxx | |
parent | 8a05b74eeb8d5e0955fbe3cefd945cdc9bffa3f5 (diff) |
crashtesting: CreateShellID returns the mediums base url...
when it works the way we want it to work, so presumably we can cut out the
middle man and use getDocumentBaseURL directly which does the same thing.
This has the advantage of being in the IEmbeddedHelper api so assignFrom can be
tweaked to pull the src and dest ids arguments to CopyAndGetEmbeddedObject from
the src and dest IEmbeddedHelpers always available there. So we ensure we
have some ids to present to CopyAndGetEmbeddedObject, avoiding the assert
on converting documents such as ooo89433-1.ppt to pdf
So the explicit args can apparently be dropped, bubbling up then means we don't
need a CloneWithShellIDs (introduced with tdf#71076 and tdf#71767) as normal
Clone should now do the right thing.
And various other arguments in various callers of these, which are typically
filled in with an unhelpful empty OUString placeholder, can go
Change-Id: I9c0be0340e72f98b10ee87ada7d2a021fcc39e23
Diffstat (limited to 'include/svx/view3d.hxx')
-rw-r--r-- | include/svx/view3d.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/svx/view3d.hxx b/include/svx/view3d.hxx index 63da66059f72..2f2fe088fc04 100644 --- a/include/svx/view3d.hxx +++ b/include/svx/view3d.hxx @@ -98,8 +98,7 @@ public: // On Paste: We need to insert the objects of the Scene, but not the Scene itself using SdrView::Paste; virtual bool Paste( - const SdrModel& rMod, const Point& rPos, SdrObjList* pLst, SdrInsertFlags nOptions, - const OUString& rSrcShellID, const OUString& rDestShellID ) override; + const SdrModel& rMod, const Point& rPos, SdrObjList* pLst, SdrInsertFlags nOptions) override; // #83403# Service routine used from local Clone() and from SdrCreateView::EndCreateObj(...) bool ImpCloneAll3DObjectsToDestScene(E3dScene* pSrcScene, E3dScene* pDstScene, Point aOffset); |