diff options
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/uibase/uno/unotxdoc.cxx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sw/source/uibase/uno/unotxdoc.cxx b/sw/source/uibase/uno/unotxdoc.cxx index 9ceee4566add..10f618579510 100644 --- a/sw/source/uibase/uno/unotxdoc.cxx +++ b/sw/source/uibase/uno/unotxdoc.cxx @@ -3137,6 +3137,21 @@ Size SwXTextDocument::getDocumentSize() return pViewShell->GetDocSize(); } +void SwXTextDocument::setPart( int /*nPart*/ ) +{ +} + +int SwXTextDocument::getPart() +{ + return 0; +} + +int SwXTextDocument::getParts() +{ + // For now we treat the document as one large piece. + return 1; +} + void * SAL_CALL SwXTextDocument::operator new( size_t t) throw() { return SwXTextDocumentBaseClass::operator new(t); |