summaryrefslogtreecommitdiff
path: root/slideshow/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 13:10:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 16:03:34 +0200
commite037381f85413fe6329c54e49ccfcac88dd71048 (patch)
tree78bce79b46f2f5415d70214555ceccc84897dfbf /slideshow/source/inc
parentca4701fec182d928ab3d39f2183dafecf90e430b (diff)
loplugin:unusedfields in slideshow..svtools
Change-Id: I74d5a4b8cfc4b18267f99648a3112b163c91fd8c Reviewed-on: https://gerrit.libreoffice.org/39474 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r--slideshow/source/inc/doctreenode.hxx11
1 files changed, 3 insertions, 8 deletions
diff --git a/slideshow/source/inc/doctreenode.hxx b/slideshow/source/inc/doctreenode.hxx
index f619a4b87659..5cd3fe6fe07c 100644
--- a/slideshow/source/inc/doctreenode.hxx
+++ b/slideshow/source/inc/doctreenode.hxx
@@ -63,8 +63,7 @@ namespace slideshow
*/
DocTreeNode() :
mnStartIndex(-1),
- mnEndIndex(-1),
- meType(NodeType::Invalid)
+ mnEndIndex(-1)
{
}
@@ -82,11 +81,9 @@ namespace slideshow
Node type
*/
DocTreeNode( sal_Int32 nStartIndex,
- sal_Int32 nEndIndex,
- NodeType eType ) :
+ sal_Int32 nEndIndex ) :
mnStartIndex(nStartIndex),
- mnEndIndex(nEndIndex),
- meType(eType)
+ mnEndIndex(nEndIndex)
{
}
@@ -100,13 +97,11 @@ namespace slideshow
{
mnStartIndex = -1;
mnEndIndex = -1;
- meType = NodeType::Invalid;
}
private:
sal_Int32 mnStartIndex;
sal_Int32 mnEndIndex;
- NodeType meType;
};