summaryrefslogtreecommitdiff
path: root/include/formula
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-07-07 17:57:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-07 22:01:33 +0200
commit9ff8a1173a72b9ebea54ef3b00b1d632bf953e37 (patch)
treec452f98284d8e6f07aec0b7ba9f4ec859aab1fbf /include/formula
parent0dffc65236fbacf98047d6dbfc82b4efe7dd959b (diff)
formula: create instances with uno constructors
See tdf#74608 for motivation Change-Id: I5983c837977e40b91df02605c1012640ffd5c650 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98291 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/formula')
-rw-r--r--include/formula/FormulaOpCodeMapperObj.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/formula/FormulaOpCodeMapperObj.hxx b/include/formula/FormulaOpCodeMapperObj.hxx
index bd0595d438d9..c7b7a400f5c9 100644
--- a/include/formula/FormulaOpCodeMapperObj.hxx
+++ b/include/formula/FormulaOpCodeMapperObj.hxx
@@ -48,12 +48,8 @@ class FORMULA_DLLPUBLIC FormulaOpCodeMapperObj : public cppu::WeakImplHelper<
css::lang::XServiceInfo >
{
::std::unique_ptr<FormulaCompiler> m_pCompiler;
-public:
- static OUString getImplementationName_Static();
- static css::uno::Sequence< OUString> getSupportedServiceNames_Static();
- static css::uno::Reference< css::uno::XInterface > create(const css::uno::Reference< css::uno::XComponentContext >& _xContext);
-protected:
+public:
FormulaOpCodeMapperObj(::std::unique_ptr<FormulaCompiler> && _pCompiler);
virtual ~FormulaOpCodeMapperObj() override;