summaryrefslogtreecommitdiff
path: root/include/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-09-19 09:48:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-19 10:44:05 +0000
commit1658bd231bc662504a072097dc614c29fe2e116d (patch)
tree00e1036c841aa7c228d443c34cdc5e88b8054ea3 /include/svx
parent4f86b7a86cae630c19f6f0d1b4d6672c25e2eb3c (diff)
loplugin:unusedenumvalues
Change-Id: I9dcc9f73af6db5b4f7cc946bc28931e5c230b34c Reviewed-on: https://gerrit.libreoffice.org/29012 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/cube3d.hxx5
-rw-r--r--include/svx/frmsel.hxx4
-rw-r--r--include/svx/pageitem.hxx3
3 files changed, 1 insertions, 11 deletions
diff --git a/include/svx/cube3d.hxx b/include/svx/cube3d.hxx
index d1d2a06a4f15..dc9f34d36784 100644
--- a/include/svx/cube3d.hxx
+++ b/include/svx/cube3d.hxx
@@ -45,10 +45,7 @@ enum class CubeFaces
Top = 0x0008,
Right = 0x0010,
Front = 0x0020,
- Full = Bottom | Back | Left | Top | Right | Front,
- OpenTopBottom = Back | Left | Right | Front,
- OpenLeftRight = Bottom | Back | Top | Front,
- OpenFrontBack = Bottom | Left | Top | Right
+ Full = Bottom | Back | Left | Top | Right | Front
};
namespace o3tl
{
diff --git a/include/svx/frmsel.hxx b/include/svx/frmsel.hxx
index 8cc89c7a994d..2a153301e015 100644
--- a/include/svx/frmsel.hxx
+++ b/include/svx/frmsel.hxx
@@ -55,10 +55,6 @@ enum class FrameSelFlags
/** If set, all four outer frame borders are enabled. */
Outer = Left | Right | Top | Bottom,
- /** If set, both inner frame borders are enabled. */
- Inner = InnerHorizontal | InnerVertical,
- /** If set, both diagonal frame borders are enabled. */
- Diagonal = DiagonalTLBR | DiagonalBLTR,
/** If set, all frame borders will support the don't care state. */
DontCare = 0x0100
diff --git a/include/svx/pageitem.hxx b/include/svx/pageitem.hxx
index 02466cfce962..e8580cb68aec 100644
--- a/include/svx/pageitem.hxx
+++ b/include/svx/pageitem.hxx
@@ -31,10 +31,7 @@ enum SvxNumType
SVX_ROMAN_LOWER = css::style::NumberingType::ROMAN_LOWER,
SVX_ARABIC = css::style::NumberingType::ARABIC,
SVX_NUMBER_NONE = css::style::NumberingType::NUMBER_NONE,
- SVX_CHAR_SPECIAL = css::style::NumberingType::CHAR_SPECIAL,
SVX_PAGEDESC = css::style::NumberingType::PAGE_DESCRIPTOR,
- SVX_BITMAP = css::style::NumberingType::BITMAP,
- SVX_CHARS_UPPER_LETTER_N = css::style::NumberingType::CHARS_UPPER_LETTER_N
};
/*--------------------------------------------------------------------