diff options
author | Noel Grandin <noel@peralex.com> | 2014-11-14 09:27:02 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2014-11-14 07:54:58 +0000 |
commit | 7f232c7b91625138adf1d2e2cb8330aa14ce22d8 (patch) | |
tree | b6f85b83245a2a648f2a85143a67909ab53aa2de /sc | |
parent | 34b12a170e1b3264fa46a8996cc67e12e2fea947 (diff) |
-Werror,-Wunused-const-variable
Change-Id: I2ace311bc1fe66329a7833e602820f275a7dbd04
Reviewed-on: https://gerrit.libreoffice.org/12422
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/drawingmanager.cxx | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/sc/source/filter/oox/drawingmanager.cxx b/sc/source/filter/oox/drawingmanager.cxx index d6804e44b5e4..bf9c9a8f3e60 100644 --- a/sc/source/filter/oox/drawingmanager.cxx +++ b/sc/source/filter/oox/drawingmanager.cxx @@ -46,41 +46,20 @@ namespace { // OBJ record ----------------------------------------------------------------- -const sal_uInt16 BIFF_OBJTYPE_UNKNOWN = 0xFFFF; // for internal use only - // line formatting ------------------------------------------------------------ const sal_uInt8 BIFF_OBJ_LINE_AUTOCOLOR = 64; const sal_uInt8 BIFF_OBJ_LINE_SOLID = 0; -const sal_uInt8 BIFF_OBJ_LINE_DASH = 1; -const sal_uInt8 BIFF_OBJ_LINE_DOT = 2; -const sal_uInt8 BIFF_OBJ_LINE_DASHDOT = 3; -const sal_uInt8 BIFF_OBJ_LINE_DASHDOTDOT = 4; -const sal_uInt8 BIFF_OBJ_LINE_MEDTRANS = 5; -const sal_uInt8 BIFF_OBJ_LINE_DARKTRANS = 6; -const sal_uInt8 BIFF_OBJ_LINE_LIGHTTRANS = 7; -const sal_uInt8 BIFF_OBJ_LINE_NONE = 255; const sal_uInt8 BIFF_OBJ_LINE_HAIR = 0; -const sal_uInt8 BIFF_OBJ_LINE_THIN = 1; -const sal_uInt8 BIFF_OBJ_LINE_MEDIUM = 2; -const sal_uInt8 BIFF_OBJ_LINE_THICK = 3; -const sal_uInt8 BIFF_OBJ_ARROW_OPEN = 1; -const sal_uInt8 BIFF_OBJ_ARROW_FILLED = 2; -const sal_uInt8 BIFF_OBJ_ARROW_OPENBOTH = 3; -const sal_uInt8 BIFF_OBJ_ARROW_FILLEDBOTH = 4; -const sal_uInt8 BIFF_OBJ_ARROW_NARROW = 0; -const sal_uInt8 BIFF_OBJ_ARROW_MEDIUM = 1; -const sal_uInt8 BIFF_OBJ_ARROW_WIDE = 2; // fill formatting ------------------------------------------------------------ const sal_uInt8 BIFF_OBJ_FILL_AUTOCOLOR = 65; -const sal_uInt8 BIFF_OBJ_PATT_NONE = 0; const sal_uInt8 BIFF_OBJ_PATT_SOLID = 1; } // namespace |