summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorTroy Rollo <libreoffice@troy.rollo.name>2011-07-22 23:59:48 +1000
committerLuboš Luňák <l.lunak@suse.cz>2011-08-01 17:22:51 +0200
commita197cee991f6afb25e5fa9e868472eae3fbc3f28 (patch)
tree1b85f0b9d34ea888d99fe148d20647371c409e7a /writerfilter
parent295185572f87dc8dad1ae56249ec9b3076a6b799 (diff)
Import of xrefs to numbered paragraphs from docx
The first part of this patch adds importing of cross-references to numbered paragraphs from docx file. The second part provides a fix to imports of bookmarks from docx, which in the test files I have end up importing with an empty bookmark name. The problem is that for each bookmark, DomainMapper_Impl::AddBookmark is called twice - once with an empty string for rBookmarkName, and once for the string that is in the file. The fix I have used is to ensure the passed in name is used if the bookmark has presiously been added, and the old one has an empty string as the name. This works, but I am not sure it is correct - I have not investigated why it is called with an empty string in the first place. Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx20
1 files changed, 19 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index 285670fd7fd2..8bab630293b4 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -2682,6 +2682,21 @@ void DomainMapper_Impl::CloseFieldCommand()
//above-below
nFieldPart = text::ReferenceFieldPart::UP_DOWN;
}
+ else if( lcl_FindInCommand( pContext->GetCommand(), 'r', sValue ))
+ {
+ //number
+ nFieldPart = text::ReferenceFieldPart::NUMBER;
+ }
+ else if( lcl_FindInCommand( pContext->GetCommand(), 'n', sValue ))
+ {
+ //number-no-context
+ nFieldPart = text::ReferenceFieldPart::NUMBER_NO_CONTEXT;
+ }
+ else if( lcl_FindInCommand( pContext->GetCommand(), 'w', sValue ))
+ {
+ //number-full-context
+ nFieldPart = text::ReferenceFieldPart::NUMBER_FULL_CONTEXT;
+ }
xFieldProperties->setPropertyValue(
rPropNameSupplier.GetName( PROP_REFERENCE_FIELD_PART ), uno::makeAny( nFieldPart ));
}
@@ -2982,7 +2997,10 @@ void DomainMapper_Impl::AddBookmark( const ::rtl::OUString& rBookmarkName, const
xCursor->gotoRange( xTextAppend->getEnd(), true );
uno::Reference< container::XNamed > xBkmNamed( xBookmark, uno::UNO_QUERY_THROW );
//todo: make sure the name is not used already!
- xBkmNamed->setName( aBookmarkIter->second.m_sBookmarkName );
+ if ( aBookmarkIter->second.m_sBookmarkName.getLength() > 0 )
+ xBkmNamed->setName( aBookmarkIter->second.m_sBookmarkName );
+ else
+ xBkmNamed->setName( rBookmarkName );
xTextAppend->insertTextContent( uno::Reference< text::XTextRange >( xCursor, uno::UNO_QUERY_THROW), xBookmark, !xCursor->isCollapsed() );
m_aBookmarkMap.erase( aBookmarkIter );
}