diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-27 15:08:50 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-28 11:21:17 +0000 |
commit | 48a8d6d8434908690bc2a51d27f1051bd550c9b0 (patch) | |
tree | 066f8fc9753bdba62f87f205baface6e729857bf /rsc | |
parent | f7d6f3e4e3fda3cd4936880918e2831246634a3e (diff) |
loplugin:singlevalfields in various
Change-Id: Ia0d8f463a4dba9ec63aa0159441e3e607dd3bf5e
Reviewed-on: https://gerrit.libreoffice.org/26738
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/inc/rscdef.hxx | 1 | ||||
-rw-r--r-- | rsc/inc/rsclex.hxx | 3 | ||||
-rw-r--r-- | rsc/source/tools/rscdef.cxx | 1 |
3 files changed, 1 insertions, 4 deletions
diff --git a/rsc/inc/rscdef.hxx b/rsc/inc/rscdef.hxx index 874c03a0249c..88d0a26a40a5 100644 --- a/rsc/inc/rscdef.hxx +++ b/rsc/inc/rscdef.hxx @@ -204,7 +204,6 @@ friend class RscFileTab; public: bool bLoaded; // whether the file is loaded bool bScanned; // whether the file searches for include - bool bDirty; // dirty-flag OString aFileName; // file name OString aPathName; // file path and name RscDefineList aDefLst; // list of defines diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx index f3406f76bb5d..690b67a8871b 100644 --- a/rsc/inc/rsclex.hxx +++ b/rsc/inc/rsclex.hxx @@ -59,8 +59,7 @@ struct Node { Node* pPrev; RSCINST aInst; - sal_uInt32 nTupelRec; // Rekursionstiefe fuer Tupel - Node() { pPrev = nullptr; nTupelRec = 0; } + Node() { pPrev = nullptr; } }; class ObjectStack diff --git a/rsc/source/tools/rscdef.cxx b/rsc/source/tools/rscdef.cxx index baf90d263740..e7f5f444e5f7 100644 --- a/rsc/source/tools/rscdef.cxx +++ b/rsc/source/tools/rscdef.cxx @@ -353,7 +353,6 @@ RscFile::RscFile() { bLoaded = false; bIncFile = false; - bDirty = false; bScanned = false; } |