summaryrefslogtreecommitdiff
path: root/sc/source/filter/oox/ooxformulaparser.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-04-06 17:13:43 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-04-06 17:19:54 +0200
commitc4c51709eaa02a5c9a2af3e5d436790307109813 (patch)
treec67362b4f2c3d3f34655ca65ec10d54e1509cf73 /sc/source/filter/oox/ooxformulaparser.cxx
parentc78f918a7cb267a713804b8feacc3425196d4428 (diff)
whitespace cleanup in sc
Change-Id: Id1dcadcac179c52977e48a6912ce4d5fd542f60c
Diffstat (limited to 'sc/source/filter/oox/ooxformulaparser.cxx')
-rw-r--r--sc/source/filter/oox/ooxformulaparser.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/sc/source/filter/oox/ooxformulaparser.cxx b/sc/source/filter/oox/ooxformulaparser.cxx
index eeb0e06d027d..a95c05c2e7ac 100644
--- a/sc/source/filter/oox/ooxformulaparser.cxx
+++ b/sc/source/filter/oox/ooxformulaparser.cxx
@@ -26,8 +26,6 @@
namespace oox {
namespace xls {
-
-
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::sheet;
using namespace ::com::sun::star::table;
@@ -35,8 +33,6 @@ using namespace ::com::sun::star::uno;
using ::rtl::OUString;
-
-
class OOXMLFormulaParserImpl : private FormulaFinalizer
{
public:
@@ -51,8 +47,6 @@ private:
ApiParserWrapper maApiParser;
};
-
-
OOXMLFormulaParserImpl::OOXMLFormulaParserImpl( const Reference< XMultiServiceFactory >& rxModelFactory ) :
FormulaFinalizer( OpCodeProvider( rxModelFactory, FILTER_OOXML, BIFF_UNKNOWN, true ) ),
maApiParser( rxModelFactory, *this )
@@ -103,8 +97,6 @@ const FunctionInfo* OOXMLFormulaParserImpl::resolveBadFuncName( const OUString&
return 0;
}
-
-
Sequence< OUString > OOXMLFormulaParser_getSupportedServiceNames()
{
Sequence< OUString > aServiceNames( 1 );
@@ -122,8 +114,6 @@ Reference< XInterface > OOXMLFormulaParser_create( const Reference< XComponentCo
return static_cast< ::cppu::OWeakObject* >( new OOXMLFormulaParser );
}
-
-
OOXMLFormulaParser::OOXMLFormulaParser()
{
}
@@ -185,8 +175,6 @@ OUString SAL_CALL OOXMLFormulaParser::printFormula(
throw RuntimeException();
}
-
-
} // namespace xls
} // namespace oox