summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-26 11:14:10 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-26 12:25:56 +0200
commit98782932280d20ece450fa06a90c202fb8e2a26e (patch)
treef8092cc2c86641468a0edd77ca85bb4877b965f0 /starmath
parentf2964b9cdb04595e842de329222ffa2b63e5d7f7 (diff)
loplugin:unusedmethods
Change-Id: I7f26ee112ed89ee3e69c56930260565f66ff145b Reviewed-on: https://gerrit.libreoffice.org/40442 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/smmod.hxx3
-rw-r--r--starmath/source/smmod.cxx8
2 files changed, 1 insertions, 10 deletions
diff --git a/starmath/inc/smmod.hxx b/starmath/inc/smmod.hxx
index 12f9330d960f..81e21241264b 100644
--- a/starmath/inc/smmod.hxx
+++ b/starmath/inc/smmod.hxx
@@ -53,8 +53,7 @@ OUString SmResId(const char* pId);
class SmLocalizedSymbolData
{
public:
- SmLocalizedSymbolData();
- ~SmLocalizedSymbolData();
+ SmLocalizedSymbolData() = delete;
static const OUString GetUiSymbolName( const OUString &rExportName );
static const OUString GetExportSymbolName( const OUString &rUiName );
diff --git a/starmath/source/smmod.cxx b/starmath/source/smmod.cxx
index 1a64ae16226e..af4623c9bfcc 100644
--- a/starmath/source/smmod.cxx
+++ b/starmath/source/smmod.cxx
@@ -47,14 +47,6 @@ OUString SmResId(const char* pId)
return Translate::get(pId, SM_MOD()->GetResLocale());
}
-SmLocalizedSymbolData::SmLocalizedSymbolData()
-{
-}
-
-SmLocalizedSymbolData::~SmLocalizedSymbolData()
-{
-}
-
const OUString SmLocalizedSymbolData::GetUiSymbolName( const OUString &rExportName )
{
OUString aRes;