summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-03-29 09:35:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-03-29 14:45:43 +0200
commit73e6a7975b3508c5cfccb3df7c35b0303f87d9bb (patch)
tree0b9a2c93b1db01dd476be1479022ac5066980db9 /sc/source/filter
parent3138abfb052a4241cfca4b8d430c139cca50a85c (diff)
loplugin:unusedmethods
Change-Id: I7805ac9bc6f8c0aa5ba4804777e7d7c2c29a78f3 Reviewed-on: https://gerrit.libreoffice.org/52066 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/xml/XMLStylesImportHelper.hxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/sc/source/filter/xml/XMLStylesImportHelper.hxx b/sc/source/filter/xml/XMLStylesImportHelper.hxx
index ccffeb7f0c8f..62b36fb681db 100644
--- a/sc/source/filter/xml/XMLStylesImportHelper.hxx
+++ b/sc/source/filter/xml/XMLStylesImportHelper.hxx
@@ -147,13 +147,6 @@ class ScMyStylesImportHelper
void AddDefaultRange(const ScRange& rRange);
void AddSingleRange(const ScRange& rRange);
void AddRange();
- static bool IsEqual(const OUString* pFirst, const OUString* pSecond)
- {
- return ((pFirst && pSecond && *pFirst == *pSecond) ||
- (!pFirst && !pSecond) ||
- (!pFirst && pSecond && pSecond->isEmpty()) ||
- (!pSecond && pFirst && pFirst->isEmpty()));
- }
public:
explicit ScMyStylesImportHelper(ScXMLImport& rImport);
~ScMyStylesImportHelper();