diff options
author | Eike Rathke <erack@redhat.com> | 2018-03-02 20:31:48 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2018-03-02 20:32:41 +0100 |
commit | a44e62b82c7598471da9a5254953067613806337 (patch) | |
tree | 485fa00a7b61623cf738c8b92ad9bde1964358e3 /editeng/inc | |
parent | ce4fc2fc08be8ea2773194e303ed42d2579e93a0 (diff) |
Resolves: tdf#114675 return new EditPaM of insert position from SvxReadXML()
Change-Id: I77027d74a0addaafaf19e2c2a8e9759d560951eb
Diffstat (limited to 'editeng/inc')
-rw-r--r-- | editeng/inc/editxml.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editeng/inc/editxml.hxx b/editeng/inc/editxml.hxx index 6e3a3de26a47..a3918e1c5397 100644 --- a/editeng/inc/editxml.hxx +++ b/editeng/inc/editxml.hxx @@ -23,12 +23,13 @@ class EditEngine; class SvStream; struct ESelection; +class EditPaM; /** this function exports the selected content of an edit engine into a xml stream*/ extern void SvxWriteXML( EditEngine& rEditEngine, SvStream& rStream, const ESelection& rSel ); /** this function imports xml from the stream into the selected of an edit engine */ -extern void SvxReadXML( EditEngine& rEditEngine, SvStream& rStream, const ESelection& rSel ); +extern EditPaM SvxReadXML( EditEngine& rEditEngine, SvStream& rStream, const ESelection& rSel ); #endif |