summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/tree/treevisitorfactory.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/tree/treevisitorfactory.cxx')
-rw-r--r--sdext/source/pdfimport/tree/treevisitorfactory.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sdext/source/pdfimport/tree/treevisitorfactory.cxx b/sdext/source/pdfimport/tree/treevisitorfactory.cxx
index e8a44bbe661d..f455ea9a91b2 100644
--- a/sdext/source/pdfimport/tree/treevisitorfactory.cxx
+++ b/sdext/source/pdfimport/tree/treevisitorfactory.cxx
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -44,7 +44,7 @@ namespace pdfi
}
virtual boost::shared_ptr<ElementTreeVisitor> createStyleCollectingVisitor(
- StyleContainer& rStyles,
+ StyleContainer& rStyles,
PDFIProcessor& rProc ) const
{
return boost::shared_ptr<ElementTreeVisitor>(new WriterXmlFinalizer(rStyles,rProc));
@@ -66,7 +66,7 @@ namespace pdfi
}
virtual boost::shared_ptr<ElementTreeVisitor> createStyleCollectingVisitor(
- StyleContainer& rStyles,
+ StyleContainer& rStyles,
PDFIProcessor& rProc ) const
{
return boost::shared_ptr<ElementTreeVisitor>(new DrawXmlFinalizer(rStyles,rProc));
@@ -89,7 +89,7 @@ namespace pdfi
}
virtual boost::shared_ptr<ElementTreeVisitor> createStyleCollectingVisitor(
- StyleContainer& rStyles,
+ StyleContainer& rStyles,
PDFIProcessor& rProc ) const
{
return boost::shared_ptr<ElementTreeVisitor>(new DrawXmlFinalizer(rStyles,rProc));
@@ -102,16 +102,16 @@ namespace pdfi
}
};
- TreeVisitorFactorySharedPtr createWriterTreeVisitorFactory()
- {
+ TreeVisitorFactorySharedPtr createWriterTreeVisitorFactory()
+ {
return TreeVisitorFactorySharedPtr(new WriterTreeVisitorFactory());
}
TreeVisitorFactorySharedPtr createImpressTreeVisitorFactory()
- {
+ {
return TreeVisitorFactorySharedPtr(new ImpressTreeVisitorFactory());
}
TreeVisitorFactorySharedPtr createDrawTreeVisitorFactory()
- {
+ {
return TreeVisitorFactorySharedPtr(new DrawTreeVisitorFactory());
}
}