diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 11:00:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-05 13:11:03 +0100 |
commit | 38e358585591dbfcfc532ee2b4fc1de0f5962ee7 (patch) | |
tree | 18560a08c9b34805dbaffdebaac81f7360afa814 | |
parent | a2a922c273e90af27810cee4ec8cb724125b6aa5 (diff) |
loplugin:singlevalfields in lotuswordpro
Change-Id: I1fe56271bfcbbc8aba023047b0888f75dd6ce886
Reviewed-on: https://gerrit.libreoffice.org/64600
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | lotuswordpro/inc/xfilter/xfglobal.hxx | 3 | ||||
-rw-r--r-- | lotuswordpro/source/filter/xfilter/xfglobal.cxx | 8 |
2 files changed, 0 insertions, 11 deletions
diff --git a/lotuswordpro/inc/xfilter/xfglobal.hxx b/lotuswordpro/inc/xfilter/xfglobal.hxx index 088e24611124..30bea2c5be94 100644 --- a/lotuswordpro/inc/xfilter/xfglobal.hxx +++ b/lotuswordpro/inc/xfilter/xfglobal.hxx @@ -135,12 +135,9 @@ public: public: static int s_nSectionID; static int s_nFrameID; - static int s_nGraphID; - static int s_nTableID; static int s_nNoteID; static int s_nStrokeDashID; static int s_nAreaID; - static int s_nObjID; static int s_nImageID; }; diff --git a/lotuswordpro/source/filter/xfilter/xfglobal.cxx b/lotuswordpro/source/filter/xfilter/xfglobal.cxx index 160dfba4907a..36649937dcab 100644 --- a/lotuswordpro/source/filter/xfilter/xfglobal.cxx +++ b/lotuswordpro/source/filter/xfilter/xfglobal.cxx @@ -63,16 +63,10 @@ #include <xfilter/xfstylemanager.hxx> int XFGlobal::s_nFrameID = 1; -int XFGlobal::s_nGraphID = 1; int XFGlobal::s_nSectionID = 1; -int XFGlobal::s_nTableID = 1; int XFGlobal::s_nNoteID = 1; int XFGlobal::s_nStrokeDashID = 1; int XFGlobal::s_nAreaID = 1; - -//For chart object, /2005/2 -int XFGlobal::s_nObjID = 1; - int XFGlobal::s_nImageID = 1; OUString XFGlobal::GenSectionName() @@ -123,11 +117,9 @@ void XFGlobal::Reset() { s_nSectionID = 1; s_nFrameID = 1; - s_nTableID = 1; s_nNoteID = 1; s_nStrokeDashID = 1; s_nAreaID = 1; - s_nObjID = 1; } void XFGlobalReset() |