summaryrefslogtreecommitdiffstats
path: root/editeng/inc/editxml.hxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2018-03-02 20:31:48 +0100
committerEike Rathke <erack@redhat.com>2018-03-02 20:32:41 +0100
commita44e62b82c7598471da9a5254953067613806337 (patch)
tree485fa00a7b61623cf738c8b92ad9bde1964358e3 /editeng/inc/editxml.hxx
parentResolves: tdf#115351 convert boolean equivalent format codes to proper Boolean (diff)
downloadcore-a44e62b82c7598471da9a5254953067613806337.tar.gz
core-a44e62b82c7598471da9a5254953067613806337.zip
Resolves: tdf#114675 return new EditPaM of insert position from SvxReadXML()
Change-Id: I77027d74a0addaafaf19e2c2a8e9759d560951eb
Diffstat (limited to 'editeng/inc/editxml.hxx')
-rw-r--r--editeng/inc/editxml.hxx3
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