[Libreoffice-commits] core.git: sd/sdi sfx2/sdi starmath/sdi svx/sdi sw/sdi

Noel Grandin noel at peralex.com
Mon Feb 8 06:35:55 UTC 2016


 sd/sdi/sdgslots.sdi      |    2 
 sd/sdi/sdslots.sdi       |    2 
 sfx2/sdi/sfxitems.sdi    |    3 
 starmath/sdi/smitems.sdi |  556 -----------------------------------------------
 svx/sdi/svxitems.sdi     |   94 -------
 svx/sdi/xoitems.sdi      |    7 
 sw/sdi/swslots.sdi       |    2 
 7 files changed, 666 deletions(-)

New commits:
commit 91dd3ed6980a55b817bbff64fabd081d778af9ce
Author: Noel Grandin <noel at peralex.com>
Date:   Mon Feb 8 08:30:53 2016 +0200

    remove some unnecessary declarations from *.sdi file
    
    found with a bunch of grepping
    
    Change-Id: I920609fb7df5a5e55ecbf5c2bf4880ff972cfbed

diff --git a/sd/sdi/sdgslots.sdi b/sd/sdi/sdgslots.sdi
index 01e7de1..c384960 100644
--- a/sd/sdi/sdgslots.sdi
+++ b/sd/sdi/sdgslots.sdi
@@ -31,8 +31,6 @@ ModulePrefix( "Sd" )
         include "xoitems.sdi"
         include "svx.sdi"
 
-        item UINT16 TbxImageItem;
-
         enum FadeEffect
         {
             FADE_EFFECT_NONE ,
diff --git a/sd/sdi/sdslots.sdi b/sd/sdi/sdslots.sdi
index 18ba889..32f796a 100644
--- a/sd/sdi/sdslots.sdi
+++ b/sd/sdi/sdslots.sdi
@@ -32,8 +32,6 @@ ModulePrefix( "Sd" )
         include "xoitems.sdi"
         include "svx.sdi"
 
-        item UINT16 TbxImageItem;
-
         enum FadeEffect
         {
             FADE_EFFECT_NONE ,
diff --git a/sfx2/sdi/sfxitems.sdi b/sfx2/sdi/sfxitems.sdi
index f7a2410..854a384 100644
--- a/sfx2/sdi/sfxitems.sdi
+++ b/sfx2/sdi/sfxitems.sdi
@@ -25,15 +25,12 @@
     item String     SfxStringItem;
     item BYTE       SfxByteItem;
     item INT16      SfxEnumItem;
-    item INT16      SfxAllEnumItem;
-    item INT16      TbxImageItem;
 
     item String     SbxItem;                //! Dummy
     item String     SfxObjectItem;          //! Dummy
     item String     SfxTemplateItem;        //! Dummy
     item String     SfxMacroInfoItem;       //! Dummy
     item String     SfxImageItem;           //! Dummy
-    item String     SfxFrameItem;           //! Dummy
     item String     SfxObjectShellItem      //! Dummy
     item String     SfxUsrAnyItem           //! Dummy
     item String     SfxUnoFrameItem         //! Dummy
diff --git a/starmath/sdi/smitems.sdi b/starmath/sdi/smitems.sdi
deleted file mode 100644
index d9bc694..0000000
--- a/starmath/sdi/smitems.sdi
+++ /dev/null
@@ -1,556 +0,0 @@
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- *   Licensed to the Apache Software Foundation (ASF) under one or more
- *   contributor license agreements. See the NOTICE file distributed
- *   with this work for additional information regarding copyright
- *   ownership. The ASF licenses this file to you under the Apache
- *   License, Version 2.0 (the "License"); you may not use this file
- *   except in compliance with the License. You may obtain a copy of
- *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-
-enum SvxAdjust
-{
-    SVX_ADJUST_LEFT,
-    SVX_ADJUST_RIGHT,
-    SVX_ADJUST_BLOCK,
-    SVX_ADJUST_CENTER,
-    SVX_ADJUST_BLOCKLINE,
-    SVX_ADJUST_END
-};
-item SvxAdjust SvxAdjustItem;
-
-
-
-enum SvxCaseMap
-{
-    SVX_CASEMAP_NOT_MAPPED,
-    SVX_CASEMAP_VERSALIEN,
-    SVX_CASEMAP_GEMEINE,
-    SVX_CASEMAP_TITEL,
-    SVX_CASEMAP_KAPITAELCHEN,
-    SVX_CASEMAP_END
-};
-item SvxCaseMap SvxCaseMapItem;
-
-
-
-enum CharSet
-{
-    CHARSET_DONTKNOW,
-    CHARSET_ANSI,
-    CHARSET_MAC,
-    CHARSET_IBMPC_437,
-    CHARSET_IBMPC_850,
-    CHARSET_IBMPC_860,
-    CHARSET_IBMPC_861,
-    CHARSET_IBMPC_863,
-    CHARSET_IBMPC_865,
-    CHARSET_SYSTEM,
-    CHARSET_SYMBOL
-};
-item CharSet CharSetItem;
-
-
-
-enum FontFamily
-{
-    FAMILY_DONTKNOW,
-    FAMILY_DECORATIVE,
-    FAMILY_MODERN,
-    FAMILY_ROMAN,
-    FAMILY_SCRIPT,
-    FAMILY_SWISS,
-    FAMILY_SYSTEM
-};
-item FontFamily FontFamilyItem;
-
-
-
-enum FontPitch
-{
-    PITCH_DONTKNOW,
-    PITCH_FIXED,
-    PITCH_VARIABLE
-};
-item FontPitch FontPitchItem;
-
-
-
-enum FontAlign
-{
-    ALIGN_TOP,
-    ALIGN_BASELINE,
-    ALIGN_BOTTOM
-};
-item FontAlign FontAlignItem;
-
-
-
-enum FontWeight
-{
-    WEIGHT_DONTKNOW,
-    WEIGHT_THIN,
-    WEIGHT_ULTRALIGHT,
-    WEIGHT_LIGHT,
-    WEIGHT_SEMILIGHT,
-    WEIGHT_NORMAL,
-    WEIGHT_MEDIUM,
-    WEIGHT_SEMIBOLD,
-    WEIGHT_BOLD,
-    WEIGHT_ULTRABOLD,
-    WEIGHT_BLACK
-};
-item FontWeight FontWeightItem;
-
-
-
-enum FontUnderline
-{
-    UNDERLINE_NONE,
-    UNDERLINE_SINGLE,
-    UNDERLINE_DOUBLE,
-    UNDERLINE_DOTTED
-};
-item FontUnderline FontUnderlineItem;
-
-
-
-enum FontStrikeout
-{
-    STRIKEOUT_NONE,
-    STRIKEOUT_SINGLE,
-    STRIKEOUT_DOUBLE
-};
-item FontStrikeout FontStrikeoutItem;
-
-
-
-enum FontItalic
-{
-    ITALIC_NONE,
-    ITALIC_OBLIQUE,
-    ITALIC_NORMAL
-};
-item FontItalic FontItalicItem;
-
-
-
-enum SvxDbType
-{
-    DBTYPE_STARBASE,
-    DBTYPE_ODBC,
-    DBTYPE_WATCOM
-};
-item SvxDbType SvxDbTypeItem;
-
-
-
-enum SvxLineSpace
-{
-    SVX_LINE_SPACE_AUTO,
-    SVX_LINE_SPACE_MAX,
-    SVX_LINE_SPACE_MIN,
-    SVX_LINE_SPACE_END
-};
-item SvxLineSpace SvxLineSpaceItem;
-
-
-
-enum SvxInterLineSpace
-{
-    SVX_INTER_LINE_SPACE_OFF,
-    SVX_INTER_LINE_SPACE_PROP,
-    SVX_INTER_LINE_SPACE_FIX,
-    SVX_INTER_LINE_SPACE_END
-};
-item SvxInterLineSpace SvxInterLineSpaceItem;
-
-
-
-enum SvxBreak
-{
-    SVX_BREAK_NONE,
-    SVX_BREAK_COLUMN_BEFORE,
-    SVX_BREAK_COLUMN_AFTER,
-    SVX_BREAK_COLUMN_BOTH,
-    SVX_BREAK_PAGE_BEFORE,
-    SVX_BREAK_PAGE_AFTER,
-    SVX_BREAK_PAGE_BOTH,
-    SVX_BREAK_END
-};
-item SvxBreak SvxBreakItem;
-
-
-
-enum BrushStyle
-{
-    BRUSH_NULL,
-    BRUSH_SOLID,
-    BRUSH_HORZ,
-    BRUSH_VERT,
-    BRUSH_CROSS,
-    BRUSH_DIAGCROSS,
-    BRUSH_UPDIAG,
-    BRUSH_DOWNDIAG,
-    BRUSH_25,
-    BRUSH_50,
-    BRUSH_75,
-    BRUSH_BITMAP
-};
-item BrushStyle BrushStyleItem;
-
-
-
-enum SvxNumType
-{
-    SVX_CHARS_UPPER_LETTER,
-    SVX_CHARS_LOWER_LETTER,
-    SVX_ROMAN_UPPER,
-    SVX_ROMAN_LOWER,
-    SVX_ARABIC,
-    SVX_NUMBER_NONE,
-    SVX_CHAR_SPECIAL,
-    SVX_PAGEDESC
-};
-item SvxNumType SvxNumTypeItem;
-
-
-
-enum SvxShadowLocation
-{
-    SVX_SHADOW_NONE,
-    SVX_SHADOW_TOPLEFT,
-    SVX_SHADOW_TOPRIGHT,
-    SVX_SHADOW_BOTTOMLEFT,
-    SVX_SHADOW_BOTTOMRIGHT,
-    SVX_SHADOW_END
-};
-item SvxShadowLocation SvxShadowLocationItem;
-
-
-
-struct SvxBrush
-{
-    BrushStyle  Style           MID_BRUSHSTYLE;
-    BOOL        Transparent     MID_TRANSPARENT;
-    UINT32      BackColor       MID_BG_COLOR;
-    UINT32      FillColor       MID_FG_COLOR;
-};
-item SvxBrush SvxBrushItem;
-
-
-
-struct SvxCharSetColor
-{
-    CharSet     CharSet         MID_CHARSET;
-    UINT32      Color           MID_FG_COLOR;
-};
-item SvxCharSetColor SvxCharSetColorItem;
-
-
-
-item BOOL           SvxAutoKernItem;
-item UINT32         SvxColorItem;
-item BOOL           SvxContourItem;
-item FontStrikeout  SvxCrossedOutItem;
-
-
-
-struct SvxEscapement
-{
-    INT16       Esc         MID_ESCAPEMENT;
-    BYTE        Prop        MID_PROPORTIONAL;
-};
-item SvxEscapement SvxEscapementItem;
-
-
-
-struct SvxFmtBreak
-{
-    BOOL        Auto        MID_AUTOBREAK;
-    UINT16      Break       MID_BREAKxxx;
-}
-item SvxFmtBreak SvxFormatBreakItem;
-
-
-
-item BOOL SvxFormatKeepItem;
-item BOOL SvxFormatSplitItem;
-
-struct SvxFontHeight
-{
-    UINT32      Height      MID_HEIGHT;
-    BYTE        Prop        MID_PROPORTIONAL;
-};
-item SvxFontHeight SvxFontHeightItem;
-
-
-
-struct SvxFont
-{
-    String      StyleName   MID_FONTSTYLE;
-    FontPitch   Pitch       MID_FONTPICTH;
-    CharSet     CharSet     MID_CHARSET;
-    FontFamily  Family      MID_FONTFAMILY;
-    String      FamilyName  MID_FONTFAMILYNAME;
-};
-item SvxFont SvxFontItem;
-
-
-
-struct SvxHyphenZone
-{
-    BOOL        Hyphen      MID_HYPHEN;
-    BOOL        PageEnd     MID_PAGEEND;
-    BYTE        MinLead     MID_MINLEAD;
-    BYTE        MinTrail    MID_MINTRAIL;
-    BYTE        MaxHyphens  MID_MAXHYPHENS;
-};
-item SvxHyphenZone SvxHyphenZoneItem;
-
-
-
-item INT16 SvxKerningItem;
-
-
-
-struct SvxLine
-{
-    UINT32      Color       MID_FG_COLOR;
-    UINT16      OutWidth    MID_OUTER_WIDTH;
-    UINT16      InWidth     MID_INNER_WIDTH;
-    UINT16      Distance    MID_DISTANCE;
-};
-item SvxLine SvxLineItem;
-
-
-
-struct SvxLRSpace
-{
-    INT16       FirstLineOffset MID_FIRSTLINE_OFFSET;   // % or direct
-    UINT16      LeftMargin      MID_LEFT_MARGIN;        // % or direct
-    UINT16      RightMargin     MID_RIGHT_MARGIN;       // % or direct
-};
-item SvxLRSpace SvxLRSpaceItem;
-
-
-
-item UINT16 SvxLanguage;
-
-struct SvxLineSpacing
-{
-    SvxLineSpace        LineSpace       MID_LINESPACE;
-    UINT16              LineHeight      MID_HEIGHT;     // % or direct
-    SvxInterLineSpace   InterLineSpace  MID_INTER_LINESPACE;
-    INT16               InterSpace      MID_INTER_SPACE;
-};
-item SvxLineSpacing SvxLineSpacingItem;
-
-
-
-item BOOL SvxNoHyphenItem;
-item BOOL SvxNoLinebreakItem;
-item BOOL SvxOpaqueItem;
-item BYTE SvxOrphansItem;
-
-
-
-struct SvxPage
-{
-    String              DescName        MID_DESCNAMExxx;
-    BOOL                Landscape       MID_LANDSCAPE;
-    UINT16              Use             MID_USExxx;
-    SvxNumType          NumType         MID_NUMTYPExxx;
-};
-item SvxPage SvxPageItem;
-
-
-
-item String SvxPageModelItem;
-
-
-
-struct SvxPagePosSize
-{
-    INT32               XPos            MID_X;
-    INT32               YPos            MID_Y;
-    INT32               Width           MID_WIDTH;
-    INT32               Height          MID_HEIGHT;
-};
-item SvxPagePosSize SvxPagePosSizeItem;
-
-
-
-item BYTE SvxPaperBinItem;
-
-
-
-item String     SvxPostItAuthorItem;
-item String     SvxPostItDateItem;
-item String     SvxPostItTextItem;
-item FontItalic SvxPostureItem;
-item BOOL       SvxPrintItem;
-item UINT16     SvxPropSizeItem;
-
-
-
-struct SvxProtect
-{
-    BOOL            Content         MID_CONTENT;
-    BOOL            Pos             MID_POS;
-    BOOL            Size            MID_SIZE;
-};
-item SvxProtect SvxProtectItem;
-
-
-
-struct SvxSearch
-{
-    UINT16      Command         MID_COMMAND;
-    String      SearchString    MID_SEARCH_STRING;
-    String      ReplaceString   MID_REPLACE_STRING;
-                // W)ord, E)xact, B)ack, S)election, R)egExpr, P)attern
-    String      Flags           MID_FLAGS;
-    UINT16      Family          MID_FAMILY;
-    UINT16      CellType        MID_CELLTYPE;
-    BOOL        RowDirection    MID_ROW_DIRECTION;
-    UINT16      AppFlag         MID_APPFLAG;
-};
-item SvxSearch SvxSearchItem;
-
-
-
-item BOOL SvxShadowedItem;
-
-
-
-struct SvxShadow
-{
-    SvxShadowLocation   Location        MID_LOCATION;
-    UINT16              Width           MID_WIDTH;
-    BrushStyle          Style           MID_BRUSHSTYLE;
-    BOOL                Transparent     MID_TRANSPARENT;
-    UINT32              BackColor       MID_BG_COLOR;
-    UINT32              FillColor       MID_FG_COLOR;
-};
-item SvxShadow SvxShadowItem;
-
-
-
-struct SvxSize
-{
-    UINT32              Width           MID_WIDTH;
-    UINT32              Height          MID_HEIGHT;
-};
-item SvxSize SvxSizeItem;
-
-
-
-struct SvxULSpace
-{
-    UINT16              Upper           MID_UPPER;  // % or direct
-    UINT16              Lower           MID_LOWER;  // % or direct
-};
-item SvxULSpace SvxULSpaceItem
-
-
-
-enum SvxChooseControlEnum
-{
-    SVX_SNAP_PUSHBUTTON,
-    SVX_SNAP_CHECKBOX,
-    SVX_SNAP_RADIOBUTTON,
-    SVX_SNAP_SPINBUTTON,
-    SVX_SNAP_FIXEDTEXT,
-    SVX_SNAP_GROUPBOX,
-    SVX_SNAP_LISTBOX,
-    SVX_SNAP_COMBOBOX,
-    SVX_SNAP_EDIT,
-    SVX_SNAP_HSCROLLBAR,
-    SVX_SNAP_VSCROLLBAR,
-    SVX_SNAP_PREVIEW,
-    SVX_SNAP_SELECT,
-    SVX_SNAP_NOTHING
-}
-item SvxChooseControlEnum SvxChooseControlEnumItem;
-
-
-
-item SvxChooseControlEnum SvxChooseControlItem;
-item FontUnderline SvxUnderlineItem;
-item FontWeight SvxWeightItem;
-item BYTE SvxWidowsItem;
-item BOOL SvxWordLineModeItem;
-item String SvxBoxItem; //! Dummy
-
-
-
-enum SvxCellHorJustifyEnum
-{
-    SVX_HOR_JUSTIFY_STANDARD,
-    SVX_HOR_JUSTIFY_LEFT,
-    SVX_HOR_JUSTIFY_CENTER,
-    SVX_HOR_JUSTIFY_RIGHT,
-    SVX_HOR_JUSTIFY_BLOCK,
-    SVX_HOR_JUSTIFY_REPEAT
-};
-item SvxCellHorJustifyEnum SvxCellHorJustifyEnumItem;
-
-enum SvxCellVerJustifyEnum
-{
-    SVX_VER_JUSTIFY_STANDARD,
-    SVX_VER_JUSTIFY_TOP,
-    SVX_VER_JUSTIFY_CENTER,
-    SVX_VER_JUSTIFY_BOTTOM
-};
-item SvxCellVerJustifyEnum SvxCellVerJustifyEnumItem;
-
-
-
-enum SvxCellOrientationEnum
-{
-    SVX_ORIENTATION_STANDARD,
-    SVX_ORIENTATION_TOPBOTTOM,
-    SVX_ORIENTATION_BOTTOMTOP,
-    SVX_ORIENTATION_STACKED
-};
-item SvxCellOrientationEnum SvxCellOrientationEnumItem;
-
-
-
-item SvxCellHorJustifyEnum SvxHorJustifyItem;
-item SvxCellVerJustifyEnum SvxVerJustifyItem;
-item SvxCellOrientationEnum SvxOrientationItem;
-
-
-
-struct SvxLongLRSpace
-{
-    INT32           Left        MID_LEFT;
-    INT32           Right       MID_RIGHT;
-};
-item SvxLongLRSpace SvxLongLRSpaceItem;
-
-
-
-struct SvxLongULSpace
-{
-    INT32           Upper       MID_UPPER;
-    INT32           Lower       MID_LOWER;
-};
-item SvxLongULSpace SvxLongULSpaceItem;
-
-
-
-item SbxObject SvxTabStopItem;
-
-
diff --git a/svx/sdi/svxitems.sdi b/svx/sdi/svxitems.sdi
index 4fa991c..7680d69 100644
--- a/svx/sdi/svxitems.sdi
+++ b/svx/sdi/svxitems.sdi
@@ -25,7 +25,6 @@ enum SvxCellHorJustifyEnum
     SVX_HOR_JUSTIFY_BLOCK,
     SVX_HOR_JUSTIFY_REPEAT
 };
-item SvxCellHorJustifyEnum SvxCellHorJustifyEnumItem;
 
 enum SvxCellVerJustifyEnum
 {
@@ -34,7 +33,6 @@ enum SvxCellVerJustifyEnum
     SVX_VER_JUSTIFY_CENTER,
     SVX_VER_JUSTIFY_BOTTOM
 };
-item SvxCellVerJustifyEnum SvxCellVerJustifyEnumItem;
 
 enum SvxCellOrientationEnum
 {
@@ -43,7 +41,6 @@ enum SvxCellOrientationEnum
     SVX_ORIENTATION_BOTTOMTOP,
     SVX_ORIENTATION_STACKED
 };
-item SvxCellOrientationEnum SvxCellOrientationEnumItem;
 
 enum SvxChooseControlEnum
 {
@@ -85,22 +82,6 @@ enum SvxDrawAlignEnum
     SVX_OBJECT_ALIGN_MIDDLE,
     SVX_OBJECT_ALIGN_DOWN
 };
-item SvxDrawAlignEnum SvxDrawAlignEnumItem;
-
-enum SvxDrawBezierEnum
-{
-    SVX_BEZIER_MOVE,
-    SVX_BEZIER_INSERT,
-    SVX_BEZIER_DELETE,
-    SVX_BEZIER_CUTLINE,
-    SVX_BEZIER_CONVERT,
-    SVX_BEZIER_EDGE,
-    SVX_BEZIER_SMOOTH,
-    SVX_BEZIER_SYMMTR,
-    SVX_BEZIER_CLOSE,
-    SVX_BEZIER_ELIMINATE_POINTS
-};
-item SvxDrawBezierEnum SvxDrawBezierEnumItem;
 
 enum SvxAdjust
 {
@@ -213,75 +194,6 @@ enum FontItalic
 };
 item FontItalic SvxPostureItem;
 
-enum SvxDbType
-{
-    DBTYPE_STARBASE,
-    DBTYPE_ODBC,
-    DBTYPE_WATCOM
-};
-item SvxDbType SvxDbTypeItem;
-
-enum SvxLineSpace
-{
-    SVX_LINE_SPACE_AUTO,
-    SVX_LINE_SPACE_MAX,
-    SVX_LINE_SPACE_MIN,
-    SVX_LINE_SPACE_END
-};
-item SvxLineSpace SvxLineSpaceItem;
-
-enum SvxInterLineSpace
-{
-    SVX_INTER_LINE_SPACE_OFF,
-    SVX_INTER_LINE_SPACE_PROP,
-    SVX_INTER_LINE_SPACE_FIX,
-    SVX_INTER_LINE_SPACE_END
-};
-item SvxInterLineSpace SvxInterLineSpaceItem;
-
-enum SvxBreak
-{
-    SVX_BREAK_NONE,
-    SVX_BREAK_COLUMN_BEFORE,
-    SVX_BREAK_COLUMN_AFTER,
-    SVX_BREAK_COLUMN_BOTH,
-    SVX_BREAK_PAGE_BEFORE,
-    SVX_BREAK_PAGE_AFTER,
-    SVX_BREAK_PAGE_BOTH,
-    SVX_BREAK_END
-};
-item SvxBreak SvxBreakItem;
-
-enum BrushStyle
-{
-    BRUSH_NULL,
-    BRUSH_SOLID,
-    BRUSH_HORZ,
-    BRUSH_VERT,
-    BRUSH_CROSS,
-    BRUSH_DIAGCROSS,
-    BRUSH_UPDIAG,
-    BRUSH_DOWNDIAG,
-    BRUSH_25,
-    BRUSH_50,
-    BRUSH_75,
-    BRUSH_BITMAP
-};
-item BrushStyle BrushStyleItem;
-
-enum SvxNumType
-{
-    SVX_CHARS_UPPER_LETTER,
-    SVX_CHARS_LOWER_LETTER,
-    SVX_ROMAN_UPPER,
-    SVX_ROMAN_LOWER,
-    SVX_ARABIC,
-    SVX_NUMBER_NONE,
-    SVX_CHAR_SPECIAL,
-    SVX_PAGEDESC
-};
-item SvxNumType SvxNumTypeItem;
-
 enum SvxShadowLocation
 {
     SVX_SHADOW_NONE,
@@ -306,9 +218,6 @@ item BOOL                   SvxFormatKeepItem;
 item BOOL                   SvxFormatSplitItem;
 item INT16                  SvxKerningItem;
 item INT16                  SvxLanguageItem;
-item BOOL                   SvxNoHyphenItem;
-item BOOL                   SvxNoLinebreakItem;
-item BOOL                   SvxOpaqueItem;
 item BYTE                   SvxOrphansItem;
 item BYTE                   SvxPaperBinItem;
 item String                 SvxPostItAuthorItem;
@@ -318,7 +227,6 @@ item FontItalic             SvxPostureItem;  // enum
 item BOOL                   SvxPrintItem;
 item UINT16                 SvxPropSizeItem;        // derived from UInt16Item
 item BOOL                   SvxShadowedItem;
-item SvxDrawBezierEnum      SvxDrawBezierItem;
 item SvxDrawAlignEnum       SvxDrawAlignItem;
 item BYTE                   SvxWidowsItem;
 item BOOL                   SvxWordLineModeItem;
@@ -329,7 +237,6 @@ item BOOL                   SdrOnOffItem;
 item INT16                  SdrTextFitToSizeTypeItem;  // enum
 item String                 SfxStringListItem;  // serialized into one concatenated string
 item double                 SvxDoubleItem;
-item String                 OfaPtrItem;  // serialized into one concatenated string
 item String                 OfaRefItem;
 item String                 SvxDashListItem;
 item String                 SvxLineEndListItem;
@@ -561,7 +468,6 @@ item SvxCharRotate SvxCharRotateItem;
 
 item String SfxSetItem;  // dummy
 item INT16  SvxRotateModeItem;  // enum
-item INT16  SvxOrientationItem;  // enum
 
 struct SvxMargin
 {
diff --git a/svx/sdi/xoitems.sdi b/svx/sdi/xoitems.sdi
index 2008a0b..fdab81d8 100644
--- a/svx/sdi/xoitems.sdi
+++ b/svx/sdi/xoitems.sdi
@@ -115,9 +115,6 @@ struct XLineEnd
 };
 item XLineEnd XLineEndItem;
 
-item INT32  XLineEndWidthItem;
-item BOOL   XLineEndCenterItem;
-
 struct XLineStart
 {
     String  Name        MID_NAME;
@@ -125,16 +122,12 @@ struct XLineStart
 };
 item XLineStart XLineStartItem;
 
-item INT32  XLineStartWidthItem;
-item BOOL   XLineStartCenterItem;
-
 enum SvxLineStyle
 {
     SVX_LINESTYLE_NONE,
     SVX_LINESTYLE_SOLID,
     SVX_LINESTYLE_DASH
 };
-
 item SvxLineStyle XLineStyleItem;
 
 enum SvxLineJoint
diff --git a/sw/sdi/swslots.sdi b/sw/sdi/swslots.sdi
index 380ab72..dd9a772 100644
--- a/sw/sdi/swslots.sdi
+++ b/sw/sdi/swslots.sdi
@@ -32,8 +32,6 @@ ModulePrefix( "Sw" )
     include "xoitems.sdi"
     include "svx.sdi"
 
-    item String TbxDummyItem;
-
     include "switems.sdi"
     include "swriter.sdi"
 


More information about the Libreoffice-commits mailing list