summaryrefslogtreecommitdiff
path: root/sw/source/filter/rtf
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-02-11 09:01:57 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-02-11 09:02:25 +0100
commit3493701ce9d0b8a16b433fefd94338dd72ef093f (patch)
tree6f0fdc18ce159136e8f344dc73915f584c981294 /sw/source/filter/rtf
parent3ff852364b37f5ca7a7670e6a93907044b8769ae (diff)
sw: identation fixes in swparrtf
Change-Id: I225464e2b517cd10fd055eaf1e5d23d660419628
Diffstat (limited to 'sw/source/filter/rtf')
-rw-r--r--sw/source/filter/rtf/swparrtf.cxx40
1 files changed, 18 insertions, 22 deletions
diff --git a/sw/source/filter/rtf/swparrtf.cxx b/sw/source/filter/rtf/swparrtf.cxx
index b144f0b86f2d..4b042f44d92b 100644
--- a/sw/source/filter/rtf/swparrtf.cxx
+++ b/sw/source/filter/rtf/swparrtf.cxx
@@ -43,10 +43,10 @@ using namespace ::com::sun::star;
/// Glue class to call RtfImport as an internal filter, needed by copy&paste support.
class SwRTFReader : public Reader
{
- virtual sal_uLong Read( SwDoc &, const OUString& rBaseURL, SwPaM &,const OUString &) SAL_OVERRIDE;
+ virtual sal_uLong Read(SwDoc&, const OUString& rBaseURL, SwPaM&, const OUString&) SAL_OVERRIDE;
};
-sal_uLong SwRTFReader::Read( SwDoc &rDoc, const OUString& /*rBaseURL*/, SwPaM& rPam, const OUString &)
+sal_uLong SwRTFReader::Read(SwDoc& rDoc, const OUString& /*rBaseURL*/, SwPaM& rPam, const OUString&)
{
if (!pStrm)
return ERR_SWG_READ_ERROR;
@@ -54,27 +54,24 @@ sal_uLong SwRTFReader::Read( SwDoc &rDoc, const OUString& /*rBaseURL*/, SwPaM& r
// We want to work in an empty paragraph.
// Step 1: XTextRange will be updated when content is inserted, so we know
// the end position.
- const uno::Reference<text::XTextRange> xInsertPosition =
- SwXTextRange::CreateXTextRange(rDoc, *rPam.GetPoint(), 0);
- SwNodeIndex *pSttNdIdx = new SwNodeIndex(rDoc.GetNodes());
+ const uno::Reference<text::XTextRange> xInsertPosition = SwXTextRange::CreateXTextRange(rDoc, *rPam.GetPoint(), 0);
+ SwNodeIndex* pSttNdIdx = new SwNodeIndex(rDoc.GetNodes());
const SwPosition* pPos = rPam.GetPoint();
// Step 2: Split once and remember the node that has been split.
- rDoc.getIDocumentContentOperations().SplitNode( *pPos, false );
+ rDoc.getIDocumentContentOperations().SplitNode(*pPos, false);
*pSttNdIdx = pPos->nNode.GetIndex()-1;
// Step 3: Split again.
- rDoc.getIDocumentContentOperations().SplitNode( *pPos, false );
+ rDoc.getIDocumentContentOperations().SplitNode(*pPos, false);
// Step 4: Insert all content into the new node
- rPam.Move( fnMoveBackward );
- rDoc.SetTxtFmtColl
- ( rPam, rDoc.getIDocumentStylePoolAccess().GetTxtCollFromPool(RES_POOLCOLL_STANDARD, false ) );
+ rPam.Move(fnMoveBackward);
+ rDoc.SetTxtFmtColl(rPam, rDoc.getIDocumentStylePoolAccess().GetTxtCollFromPool(RES_POOLCOLL_STANDARD, false));
- SwDocShell *pDocShell(rDoc.GetDocShell());
+ SwDocShell* pDocShell(rDoc.GetDocShell());
uno::Reference<lang::XMultiServiceFactory> xMultiServiceFactory(comphelper::getProcessServiceFactory());
- uno::Reference<uno::XInterface> xInterface(xMultiServiceFactory->createInstance(
- "com.sun.star.comp.Writer.RtfFilter"), uno::UNO_QUERY_THROW);
+ uno::Reference<uno::XInterface> xInterface(xMultiServiceFactory->createInstance("com.sun.star.comp.Writer.RtfFilter"), uno::UNO_QUERY_THROW);
uno::Reference<document::XImporter> xImporter(xInterface, uno::UNO_QUERY_THROW);
uno::Reference<lang::XComponent> xDstDoc(pDocShell->GetModel(), uno::UNO_QUERY_THROW);
@@ -93,7 +90,8 @@ sal_uLong SwRTFReader::Read( SwDoc &rDoc, const OUString& /*rBaseURL*/, SwPaM& r
aDescriptor[2].Name = "TextInsertModeRange";
aDescriptor[2].Value <<= xInsertTextRange;
sal_uLong ret(0);
- try {
+ try
+ {
xFilter->filter(aDescriptor);
}
catch (uno::Exception const& e)
@@ -111,26 +109,24 @@ sal_uLong SwRTFReader::Read( SwDoc &rDoc, const OUString& /*rBaseURL*/, SwPaM& r
// of the new content with the first new node. Or in other words:
// Revert the first split node.
SwTxtNode* pTxtNode = pSttNdIdx->GetNode().GetTxtNode();
- SwNodeIndex aNxtIdx( *pSttNdIdx );
- if( pTxtNode && pTxtNode->CanJoinNext( &aNxtIdx ) &&
- pSttNdIdx->GetIndex() + 1 == aNxtIdx.GetIndex() )
+ SwNodeIndex aNxtIdx(*pSttNdIdx);
+ if (pTxtNode && pTxtNode->CanJoinNext(&aNxtIdx) && pSttNdIdx->GetIndex() + 1 == aNxtIdx.GetIndex())
{
// If the PaM points to the first new node, move the PaM to the
// end of the previous node.
- if( aPam.GetPoint()->nNode == aNxtIdx )
+ if (aPam.GetPoint()->nNode == aNxtIdx)
{
aPam.GetPoint()->nNode = *pSttNdIdx;
- aPam.GetPoint()->nContent.Assign( pTxtNode,
- pTxtNode->GetTxt().getLength() );
+ aPam.GetPoint()->nContent.Assign(pTxtNode, pTxtNode->GetTxt().getLength());
}
// If the first new node isn't empty, convert the node's text
// attributes into hints. Otherwise, set the new node's
// paragraph style at the previous (empty) node.
SwTxtNode* pDelNd = aNxtIdx.GetNode().GetTxtNode();
if (pTxtNode->GetTxt().getLength())
- pDelNd->FmtToTxtAttr( pTxtNode );
+ pDelNd->FmtToTxtAttr(pTxtNode);
else
- pTxtNode->ChgFmtColl( pDelNd->GetTxtColl() );
+ pTxtNode->ChgFmtColl(pDelNd->GetTxtColl());
pTxtNode->JoinNext();
}
}