diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 09:48:38 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-18 14:27:27 +0200 |
commit | 4c68cf2636573c97e69ae73cb9a0b65019efd26a (patch) | |
tree | 979cad8651e0f0fded3ea5d4ead2658b084a7c2d /include | |
parent | bfd6233cc83aa368d4869ae5901219238fb02e13 (diff) |
convert SdrLayer::nType to bool
since it is being used as a bool. Also rename it to something more
readable
Change-Id: I89acc47251770c94fa321b742b0fb9327024055f
Reviewed-on: https://gerrit.libreoffice.org/61909
Reviewed-by: Regina Henschel <rb.henschel@t-online.de>
Tested-by: Jenkins
Diffstat (limited to 'include')
-rw-r--r-- | include/svx/svdlayer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/svdlayer.hxx b/include/svx/svdlayer.hxx index c3103b263467..e8433a660cf2 100644 --- a/include/svx/svdlayer.hxx +++ b/include/svx/svdlayer.hxx @@ -67,7 +67,7 @@ class SVX_DLLPUBLIC SdrLayer bool mbPrintableODF; // corresponds to ODF draw:display bool mbLockedODF; // corresponds to ODF draw:protected SdrModel* pModel; // For broadcasting - sal_uInt16 nType; // 0= userdefined, 1= default layer + bool mbUserDefinedLayer; SdrLayerID const nID; SdrLayer(SdrLayerID nNewID, const OUString& rNewName); |