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 58cc091c707d..02f7896a7ac2 100644
--- a/sdext/source/pdfimport/tree/treevisitorfactory.cxx
+++ b/sdext/source/pdfimport/tree/treevisitorfactory.cxx
@@ -2,7 +2,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
@@ -45,7 +45,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));
@@ -67,7 +67,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));
@@ -90,7 +90,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));
@@ -103,16 +103,16 @@ namespace pdfi
}
};
- TreeVisitorFactorySharedPtr createWriterTreeVisitorFactory()
- {
+ TreeVisitorFactorySharedPtr createWriterTreeVisitorFactory()
+ {
return TreeVisitorFactorySharedPtr(new WriterTreeVisitorFactory());
}
TreeVisitorFactorySharedPtr createImpressTreeVisitorFactory()
- {
+ {
return TreeVisitorFactorySharedPtr(new ImpressTreeVisitorFactory());
}
TreeVisitorFactorySharedPtr createDrawTreeVisitorFactory()
- {
+ {
return TreeVisitorFactorySharedPtr(new DrawTreeVisitorFactory());
}
}