diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-12 15:00:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-12 20:21:22 +0200 |
commit | 6e21f5a6b71790b3a36f67c3915b07a5f5717bcf (patch) | |
tree | 9d0c08cf449fa574dcce1b23af30a71dac9c4376 /sc/inc | |
parent | 164ec9281aa57d52763e9622adb6e2e37d14bff8 (diff) |
loplugin:unusedmethods
Change-Id: Ifd3a1ccef68ebc4cd4e7785357e6a476f6669eb8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123456
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/editutil.hxx | 6 | ||||
-rw-r--r-- | sc/inc/formulacell.hxx | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/sc/inc/editutil.hxx b/sc/inc/editutil.hxx index efec08dfdbc5..1353544b96e3 100644 --- a/sc/inc/editutil.hxx +++ b/sc/inc/editutil.hxx @@ -150,18 +150,12 @@ public: /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const EditTextObject& rTextObject, const SfxItemSet& rDefaults, bool bRememberCopy = true ); - /// Current defaults are not applied, new defaults are applied - void SetTextNewDefaults( const EditTextObject& rTextObject, - std::unique_ptr<SfxItemSet> pDefaults ); /// SetText and apply defaults already set void SetTextCurrentDefaults( const OUString& rText ); /// Current defaults are not applied, new defaults are applied void SetTextNewDefaults( const OUString& rText, const SfxItemSet& rDefaults ); - /// Current defaults are not applied, new defaults are applied - void SetTextNewDefaults( const OUString& rText, - std::unique_ptr<SfxItemSet> pDefaults ); /// Paragraph attributes that are not defaults are copied to /// character attributes and all paragraph attributes reset diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx index fd57bde39976..9349447e9ff4 100644 --- a/sc/inc/formulacell.hxx +++ b/sc/inc/formulacell.hxx @@ -91,7 +91,6 @@ public: ~ScFormulaCellGroup(); void setCode( const ScTokenArray& rCode ); - void setCode( std::optional<ScTokenArray> pCode ); void compileCode( ScDocument& rDoc, const ScAddress& rPos, formula::FormulaGrammar::Grammar eGram ); |