This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a22ac757c2 Cleanup
a22ac757c2 is described below

commit a22ac757c2d74ad34699b832b04067f5ac53bbed
Author: mseidel <[email protected]>
AuthorDate: Thu Oct 30 18:54:39 2025 +0100

    Cleanup
---
 main/sc/sdi/app.sdi        |  45 +++----
 main/sc/sdi/chartsh.sdi    |   2 +-
 main/sc/sdi/drformsh.sdi   |   2 +-
 main/sc/sdi/drtxtob.sdi    |  69 +++++-----
 main/sc/sdi/editsh.sdi     |  42 +++---
 main/sc/sdi/formatsh.sdi   |  86 ++++++------
 main/sc/sdi/graphsh.sdi    | 102 +++++++--------
 main/sc/sdi/mediash.sdi    |   4 +-
 main/sc/sdi/oleobjsh.sdi   |   2 +-
 main/sc/sdi/pgbrksh.sdi    |   4 +-
 main/sc/sdi/prevwsh.sdi    |  33 +++--
 main/sc/sdi/tabpopsh.sdi   |   3 +-
 main/sd/sdi/app.sdi        |   4 +-
 main/sd/sdi/docshell.sdi   |   2 -
 main/sfx2/sdi/appslots.sdi |  94 +++++++-------
 main/sw/sdi/_basesh.sdi    | 131 +++++++++----------
 main/sw/sdi/annotsh.sdi    | 318 ++++++++++++++++++++++-----------------------
 main/sw/sdi/grfsh.sdi      |   5 +-
 main/sw/sdi/mediash.sdi    |   5 +-
 main/sw/sdi/olesh.sdi      |   2 -
 20 files changed, 460 insertions(+), 495 deletions(-)

diff --git a/main/sc/sdi/app.sdi b/main/sc/sdi/app.sdi
index 1819678d9a..076e45deb2 100644
--- a/main/sc/sdi/app.sdi
+++ b/main/sc/sdi/app.sdi
@@ -19,8 +19,6 @@
  *
  *************************************************************/
 
-
-
 interface StarCalc
 [
        uuid ( "AB3257C0-07D7-11CF-89CB-008029E4B0B1" )
@@ -37,26 +35,26 @@ interface StarCalc
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
        ]
 
        SID_ATTR_LANGUAGE
        [
-               ExecMethod = Execute;
-               StateMethod = GetState;
-               Export = FALSE;
+               ExecMethod = Execute ;
+               StateMethod = GetState ;
+               Export = FALSE ;
        ]
        SID_ATTR_CHAR_CJK_LANGUAGE
        [
-               ExecMethod = Execute;
-               StateMethod = GetState;
-               Export = FALSE;
+               ExecMethod = Execute ;
+               StateMethod = GetState ;
+               Export = FALSE ;
        ]
        SID_ATTR_CHAR_CTL_LANGUAGE
        [
-               ExecMethod = Execute;
-               StateMethod = GetState;
-               Export = FALSE;
+               ExecMethod = Execute ;
+               StateMethod = GetState ;
+               Export = FALSE ;
        ]
 
        SID_CHOOSE_DESIGN       [ ExecMethod = Execute; ]
@@ -66,22 +64,21 @@ interface StarCalc
        SID_OPEN_XML_FILTERSETTINGS [ ExecMethod = Execute; ]
 
 
-    SID_HANGUL_HANJA_CONVERSION [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_CHINESE_CONVERSION      [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_TRANSLITERATE_HALFWIDTH [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_TRANSLITERATE_FULLWIDTH [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_TRANSLITERATE_HIRAGANA  [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_TRANSLITERATE_KATAGANA  [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
+       SID_HANGUL_HANJA_CONVERSION     [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
+       SID_CHINESE_CONVERSION          [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
+       SID_TRANSLITERATE_HALFWIDTH     [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
+       SID_TRANSLITERATE_FULLWIDTH     [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
+       SID_TRANSLITERATE_HIRAGANA      [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
+       SID_TRANSLITERATE_KATAGANA      [ StateMethod = HideDisabledSlots; 
Export = FALSE; ]
 
-    SID_INSERT_RLM              [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_INSERT_LRM              [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_INSERT_ZWSP             [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
-    SID_INSERT_ZWNBSP           [ StateMethod = HideDisabledSlots; Export = 
FALSE; ]
+       SID_INSERT_RLM                          [ StateMethod = 
HideDisabledSlots; Export = FALSE; ]
+       SID_INSERT_LRM                          [ StateMethod = 
HideDisabledSlots; Export = FALSE; ]
+       SID_INSERT_ZWSP                         [ StateMethod = 
HideDisabledSlots; Export = FALSE; ]
+       SID_INSERT_ZWNBSP                       [ StateMethod = 
HideDisabledSlots; Export = FALSE; ]
 
 }
 
-
 shell ScModule
 {
-                       import StarCalc[Automation];
+       import StarCalc[Automation];
 }
diff --git a/main/sc/sdi/chartsh.sdi b/main/sc/sdi/chartsh.sdi
index fe3ddca167..18347c9d8a 100644
--- a/main/sc/sdi/chartsh.sdi
+++ b/main/sc/sdi/chartsh.sdi
@@ -19,7 +19,7 @@
  *
  *************************************************************/
 
- // ===========================================================================
+// ===========================================================================
 shell ScChartShell : ScDrawShell
 {
 }
diff --git a/main/sc/sdi/drformsh.sdi b/main/sc/sdi/drformsh.sdi
index 55aaebf6ce..9a14f85984 100644
--- a/main/sc/sdi/drformsh.sdi
+++ b/main/sc/sdi/drformsh.sdi
@@ -19,7 +19,7 @@
  *
  *************************************************************/
 
- // ===========================================================================
+// ===========================================================================
 shell ScDrawFormShell : ScDrawShell
 {
 }
diff --git a/main/sc/sdi/drtxtob.sdi b/main/sc/sdi/drtxtob.sdi
index d8ff95b8d8..f912061f48 100644
--- a/main/sc/sdi/drtxtob.sdi
+++ b/main/sc/sdi/drtxtob.sdi
@@ -19,16 +19,15 @@
  *
  *************************************************************/
 
-
 interface TableDrawText
 {
-       //      Drawing geht von Basic aus gar nicht, darum alles mit Export = 
FALSE
+       // Drawing geht von Basic aus gar nicht, darum alles mit Export = FALSE
 
        // alle Referenz-Eingabe-Dialoge:
        FID_DEFINE_NAME                         [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_DEFINE_COLROWNAMERANGES     [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_OPENDLG_SOLVE                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
-    SID_OPENDLG_OPTSOLVER       [ StateMethod = StateDisableItems; Export = 
FALSE; ]
+       SID_OPENDLG_OPTSOLVER           [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_OPENDLG_PIVOTTABLE          [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_OPENDLG_TABOP                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_FILTER                                      [ StateMethod = 
StateDisableItems; Export = FALSE; ]
@@ -36,31 +35,31 @@ interface TableDrawText
        SID_DEFINE_DBNAME                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_OPENDLG_CONSOLIDATE         [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_OPENDLG_EDIT_PRINTAREA      [ StateMethod = StateDisableItems; 
Export = FALSE; ]
-        //     andere:
+       // andere:
        SID_DRAW_CHART                          [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_STYLE_CATALOG                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_OPENDLG_FUNCTION            [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_STYLE_FAMILY2                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_STYLE_FAMILY4                       [ StateMethod = 
StateDisableItems; Export = FALSE; ]
-       SID_STYLE_APPLY                         [ StateMethod = 
StateDisableItems; Export = FALSE; ]
-       SID_STYLE_WATERCAN                      [ StateMethod = 
StateDisableItems; Export = FALSE; ]
+       SID_STYLE_APPLY                         [ StateMethod = 
StateDisableItems; Export = FALSE; ]
+       SID_STYLE_WATERCAN                      [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_STYLE_NEW_BY_EXAMPLE        [ StateMethod = StateDisableItems; 
Export = FALSE; ]
-       SID_STYLE_UPDATE_BY_EXAMPLE [ StateMethod = StateDisableItems; Export = 
FALSE; ]
+       SID_STYLE_UPDATE_BY_EXAMPLE     [ StateMethod = StateDisableItems; 
Export = FALSE; ]
        SID_STYLE_NEW                           [ StateMethod = 
StateDisableItems; Export = FALSE; ]
-       SID_STYLE_EDIT                          [ StateMethod = 
StateDisableItems; Export = FALSE; ]
+       SID_STYLE_EDIT                          [ StateMethod = 
StateDisableItems; Export = FALSE; ]
        SID_STYLE_DELETE                        [ StateMethod = 
StateDisableItems; Export = FALSE; ]
 
-        
//----------------------------------------------------------------------------
+       
//----------------------------------------------------------------------------
        SID_CUT                         [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_COPY                        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_PASTE                       [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
-    SID_PASTE_SPECIAL   [ ExecMethod = Execute; StateMethod = GetClipState; 
Export = FALSE; ]
-       SID_CLIPBOARD_FORMAT_ITEMS [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
+       SID_PASTE_SPECIAL       [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
+       SID_CLIPBOARD_FORMAT_ITEMS      [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
        SID_SELECTALL           [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
        SID_CHARMAP                     [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    SID_THES            [ ExecMethod = Execute; StateMethod = GetState; Export 
= FALSE; ]
-    SID_THESAURUS       [ ExecMethod = Execute; StateMethod = GetState; Export 
= FALSE; ]
-        // Attribute: --------------------------------------------------
+       SID_THES                        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_THESAURUS           [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
+       // Attribute: --------------------------------------------------
        SID_TEXT_STANDARD                       [ ExecMethod = ExecuteAttr; 
StateMethod = GetState; Export = FALSE; ]
        SID_DRAWTEXT_ATTR_DLG           [ ExecMethod = ExecuteAttr; StateMethod 
= GetState; Export = FALSE; ]
        SID_ATTR_CHAR_FONT                      [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
@@ -84,13 +83,13 @@ interface TableDrawText
        SID_ALIGNRIGHT                          [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_ALIGNBLOCK                          [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
 
-       SID_ATTR_PARA_ADJUST_LEFT                               [ ExecMethod = 
ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_ADJUST_CENTER                         [ ExecMethod = 
ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_ADJUST_RIGHT                              [ ExecMethod = 
ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_ADJUST_BLOCK                              [ ExecMethod = 
ExecuteAttr; StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_LRSPACE                   [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_LINESPACE                 [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
-       SID_ATTR_PARA_ULSPACE                   [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_ADJUST_LEFT       [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_ADJUST_CENTER     [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_ADJUST_RIGHT      [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_ADJUST_BLOCK      [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_LRSPACE           [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_LINESPACE         [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ATTR_PARA_ULSPACE           [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
 
        SID_ATTR_PARA_LINESPACE_10      [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
        SID_ATTR_PARA_LINESPACE_15      [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
@@ -101,14 +100,14 @@ interface TableDrawText
        SID_CHAR_DLG                            [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_CHAR_DLG_EFFECT                     [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_PARA_DLG                            [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
-        // ---- FontWork:
+       // ---- FontWork:
        SID_FONTWORK    [ ExecMethod = ExecuteExtra; StateMethod = GetState; 
Export = FALSE; ]
 
        // pseudo slots from Format menu
-       SID_ALIGN_ANY_LEFT      [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; Export = FALSE; ]
-    SID_ALIGN_ANY_HCENTER      [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; Export = FALSE; ]
-    SID_ALIGN_ANY_RIGHT                [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
-    SID_ALIGN_ANY_JUSTIFIED [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; Export = FALSE; ]
+       SID_ALIGN_ANY_LEFT              [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ALIGN_ANY_HCENTER   [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; Export = FALSE; ]
+       SID_ALIGN_ANY_RIGHT             [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
+       SID_ALIGN_ANY_JUSTIFIED [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; Export = FALSE; ]
 
        SID_FORMTEXT_STYLE              [ ExecMethod = ExecFormText; 
StateMethod = GetFormTextState; Export = FALSE; ]
        SID_FORMTEXT_ADJUST             [ ExecMethod = ExecFormText; 
StateMethod = GetFormTextState; Export = FALSE; ]
@@ -124,19 +123,19 @@ interface TableDrawText
 
        SID_HYPERLINK_SETLINK   [ ExecMethod = Execute; Export = FALSE; ]
        SID_HYPERLINK_GETLINK   [ StateMethod = GetState; Export = FALSE; ]
-        SID_OPEN_HYPERLINK      [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_OPEN_HYPERLINK              [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_ENABLE_HYPHENATION  [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
 
        SID_TEXTDIRECTION_LEFT_TO_RIGHT         [ ExecMethod = Execute; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_TEXTDIRECTION_TOP_TO_BOTTOM         [ ExecMethod = Execute; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_ATTR_PARA_LEFT_TO_RIGHT                     [ ExecMethod = 
ExecuteExtra; StateMethod = GetAttrState; Export = FALSE; ]
        SID_ATTR_PARA_RIGHT_TO_LEFT                     [ ExecMethod = 
ExecuteExtra; StateMethod = GetAttrState; Export = FALSE; ]
-       SID_VERTICALTEXT_STATE              [ StateMethod = GetAttrState ; 
Export = FALSE; ]
-    SID_CTLFONT_STATE                   [ StateMethod = GetAttrState ; Export 
= FALSE; ]
+       SID_VERTICALTEXT_STATE                          [ StateMethod = 
GetAttrState ; Export = FALSE; ]
+       SID_CTLFONT_STATE                                       [ StateMethod = 
GetAttrState ; Export = FALSE; ]
 
-    SID_TRANSLITERATE_SENTENCE_CASE [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
-    SID_TRANSLITERATE_TITLE_CASE    [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
-    SID_TRANSLITERATE_TOGGLE_CASE   [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_SENTENCE_CASE [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_TITLE_CASE    [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_TOGGLE_CASE   [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
        SID_TRANSLITERATE_UPPER         [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_LOWER         [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_HALFWIDTH     [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
@@ -149,10 +148,8 @@ interface TableDrawText
        SID_TABLE_VERT_BOTTOM [ExecMethod = ExecuteAttr ;StateMethod = 
GetStatePropPanelAttr ;]
 }
 
-
-
- // ===========================================================================
+// ===========================================================================
 shell ScDrawTextObjectBar
 {
-       import TableDrawText;
+       import TableDrawText ;
 }
diff --git a/main/sc/sdi/editsh.sdi b/main/sc/sdi/editsh.sdi
index 003cfb4d77..5920385268 100644
--- a/main/sc/sdi/editsh.sdi
+++ b/main/sc/sdi/editsh.sdi
@@ -19,7 +19,6 @@
  *
  *************************************************************/
 
-
 interface TableText
 {
        //      von Basic aus nicht erreichbar, darum alles mit Export = FALSE
@@ -30,30 +29,30 @@ interface TableText
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_EDIT ;
                Cachable ;
        ]
        SID_CUT                         [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_COPY                        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_PASTE                       [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
-    SID_PASTE_SPECIAL   [ ExecMethod = Execute; StateMethod = GetClipState; 
Export = FALSE; ]
-       SID_CLIPBOARD_FORMAT_ITEMS [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
+       SID_PASTE_SPECIAL       [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
+       SID_CLIPBOARD_FORMAT_ITEMS      [ ExecMethod = Execute; StateMethod = 
GetClipState; Export = FALSE; ]
        SID_SELECTALL           [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
        SID_CHARMAP                     [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        FID_INSERT_NAME         [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
-    SID_THES            [ ExecMethod = Execute; StateMethod = GetState; Export 
= FALSE; ]
+       SID_THES                        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
 
        SID_UNDO                        [ ExecMethod = ExecuteUndo; StateMethod 
= GetUndoState; Export = FALSE; ]
        SID_REDO                        [ ExecMethod = ExecuteUndo; StateMethod 
= GetUndoState; Export = FALSE; ]
        SID_REPEAT                      [ ExecMethod = ExecuteUndo; StateMethod 
= GetUndoState; Export = FALSE; ]
 
-        // ---- Attribute:
+       // ---- Attribute:
        SID_ATTR_CHAR_FONT                      [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
        SID_ATTR_CHAR_FONTHEIGHT        [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
        SID_ATTR_CHAR_COLOR                     [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; Export = FALSE; ]
 
-        // ---- Attribut - Toggles:
+       // ---- Attribut - Toggles:
        SID_ATTR_CHAR_WEIGHT            [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
        SID_ATTR_CHAR_POSTURE           [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
        SID_ATTR_CHAR_UNDERLINE         [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; Export = FALSE; ]
@@ -77,30 +76,29 @@ interface TableText
 
        SID_HYPERLINK_SETLINK   [ ExecMethod = Execute; Export = FALSE; ]
        SID_HYPERLINK_GETLINK   [ StateMethod = GetState; Export = FALSE; ]
-        SID_OPEN_HYPERLINK      [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_OPEN_HYPERLINK              [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
 
-    SID_TRANSLITERATE_SENTENCE_CASE [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
-    SID_TRANSLITERATE_TITLE_CASE    [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
-    SID_TRANSLITERATE_TOGGLE_CASE   [ ExecMethod = ExecuteTrans; StateMethod = 
GetState;  Export = FALSE; ]
-    SID_TRANSLITERATE_UPPER     [ ExecMethod = ExecuteTrans; StateMethod = 
GetState; Export = FALSE; ]
+       SID_TRANSLITERATE_SENTENCE_CASE [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_TITLE_CASE    [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_TOGGLE_CASE   [ ExecMethod = ExecuteTrans; 
StateMethod = GetState;  Export = FALSE; ]
+       SID_TRANSLITERATE_UPPER         [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_LOWER         [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_HALFWIDTH     [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_FULLWIDTH     [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_HIRAGANA      [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
        SID_TRANSLITERATE_KATAGANA      [ ExecMethod = ExecuteTrans; 
StateMethod = GetState; Export = FALSE; ]
 
-    FN_INSERT_SOFT_HYPHEN       [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    FN_INSERT_HARDHYPHEN        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    FN_INSERT_HARD_SPACE        [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    SID_INSERT_RLM              [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    SID_INSERT_LRM              [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    SID_INSERT_ZWSP             [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-    SID_INSERT_ZWNBSP           [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       FN_INSERT_SOFT_HYPHEN           [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       FN_INSERT_HARDHYPHEN            [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       FN_INSERT_HARD_SPACE            [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_INSERT_RLM                          [ ExecMethod = Execute; 
StateMethod = GetState; Export = FALSE; ]
+       SID_INSERT_LRM                          [ ExecMethod = Execute; 
StateMethod = GetState; Export = FALSE; ]
+       SID_INSERT_ZWSP                         [ ExecMethod = Execute; 
StateMethod = GetState; Export = FALSE; ]
+       SID_INSERT_ZWNBSP                       [ ExecMethod = Execute; 
StateMethod = GetState; Export = FALSE; ]
 }
 
-
- // ===========================================================================
+// ===========================================================================
 shell ScEditShell
 {
-       import TableText;
+       import TableText ;
 }
diff --git a/main/sc/sdi/formatsh.sdi b/main/sc/sdi/formatsh.sdi
index 6f6654a1a4..91f16bd67e 100644
--- a/main/sc/sdi/formatsh.sdi
+++ b/main/sc/sdi/formatsh.sdi
@@ -19,9 +19,7 @@
  *
  *************************************************************/
 
-
-
- // ===========================================================================
+// ===========================================================================
 interface TableFont
 [
        uuid ( "2E4AC1C0-137C-11D3-B25B-006097DA68F3" )
@@ -39,7 +37,7 @@ interface TableFont
        SID_ULINE_VAL_DOTTED    [ ExecMethod = ExecuteTextAttr; StateMethod = 
GetTextAttrState; ]
 }
 
- // ===========================================================================
+// ===========================================================================
 interface FormatForSelection
 [
        uuid ( "40F448A0-137C-11D3-B25B-006097DA68F3" )
@@ -65,34 +63,34 @@ interface FormatForSelection
        SID_STYLE_DELETE                        [ ExecMethod = ExecuteStyle; 
StateMethod = GetStyleState; ]
        // } Slot's die in der DrawShell disabled werden.
 
-    SID_ATTR_ALIGN_HOR_JUSTIFY    [ ExecMethod = ExecuteAlignment; StateMethod 
= GetAttrState; ]
-    SID_ATTR_ALIGN_VER_JUSTIFY    [ ExecMethod = ExecuteAlignment; StateMethod 
= GetAttrState; ]
-    SID_ATTR_ALIGN_INDENT [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
-    SID_ATTR_ALIGN_HYPHENATION [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
-    SID_ATTR_ALIGN_DEGREES     [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
-    SID_ATTR_ALIGN_STACKED     [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
-    SID_ATTR_ALIGN_LOCKPOS     [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
-    SID_ATTR_ALIGN_MARGIN      [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAttrState; ]
+       SID_ATTR_ALIGN_HOR_JUSTIFY      [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_VER_JUSTIFY      [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_INDENT           [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_HYPHENATION      [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_DEGREES          [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_STACKED          [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_LOCKPOS          [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
+       SID_ATTR_ALIGN_MARGIN           [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAttrState; ]
 
        // pseudo slots from Format menu
-       SID_ALIGN_ANY_LEFT      [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
-    SID_ALIGN_ANY_HCENTER      [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
-    SID_ALIGN_ANY_RIGHT                [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
-    SID_ALIGN_ANY_JUSTIFIED [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
-    SID_ALIGN_ANY_TOP          [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
-    SID_ALIGN_ANY_VCENTER   [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
-    SID_ALIGN_ANY_BOTTOM    [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
+       SID_ALIGN_ANY_LEFT              [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
+       SID_ALIGN_ANY_HCENTER   [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
+       SID_ALIGN_ANY_RIGHT             [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
+       SID_ALIGN_ANY_JUSTIFIED [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
+       SID_ALIGN_ANY_TOP               [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
+       SID_ALIGN_ANY_VCENTER   [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
+       SID_ALIGN_ANY_BOTTOM    [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
        SID_ALIGN_ANY_HDEFAULT  [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
        SID_ALIGN_ANY_VDEFAULT  [ ExecMethod = ExecuteAlignment; StateMethod = 
GetAlignState; ]
 
-    SID_SCATTR_PROTECTION [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_BACKGROUND_COLOR    [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_ATTR_BRUSH      [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_SCATTR_PROTECTION   [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_BACKGROUND_COLOR    [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_ATTR_BRUSH                  [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; ]
        SID_ATTR_CHAR_OVERLINE  [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_ATTR_CHAR_STRIKEOUT [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_ATTR_CHAR_CONTOUR [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_ATTR_CHAR_SHADOWED [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
-    SID_ATTR_CHAR_RELIEF [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_ATTR_CHAR_STRIKEOUT [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_ATTR_CHAR_CONTOUR   [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_ATTR_CHAR_SHADOWED  [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
+       SID_ATTR_CHAR_RELIEF    [ ExecMethod = ExecuteAttr; StateMethod = 
GetAttrState; ]
        SID_ALIGNLEFT           [ ExecMethod = ExecuteTextAttr; StateMethod = 
GetTextAttrState; ]
        SID_ALIGNRIGHT          [ ExecMethod = ExecuteTextAttr; StateMethod = 
GetTextAttrState; ]
        SID_ALIGNTOP            [ ExecMethod = ExecuteTextAttr; StateMethod = 
GetTextAttrState; ]
@@ -105,15 +103,15 @@ interface FormatForSelection
        SID_V_ALIGNCELL                 [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
        SID_H_ALIGNCELL                 [ ExecMethod = ExecuteAlignment; 
StateMethod = GetAlignState; ]
 
-    SID_TEXTDIRECTION_LEFT_TO_RIGHT [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
-    SID_TEXTDIRECTION_TOP_TO_BOTTOM [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
-    SID_ATTR_PARA_LEFT_TO_RIGHT     [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
-    SID_ATTR_PARA_RIGHT_TO_LEFT     [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
-       SID_VERTICALTEXT_STATE          [ StateMethod = GetTextDirectionState ; 
Export = FALSE; ]
-    SID_CTLFONT_STATE               [ StateMethod = GetTextDirectionState ; 
Export = FALSE; ]
+       SID_TEXTDIRECTION_LEFT_TO_RIGHT [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
+       SID_TEXTDIRECTION_TOP_TO_BOTTOM [ ExecMethod = ExecuteTextDirection; 
StateMethod = GetTextDirectionState; ]
+       SID_ATTR_PARA_LEFT_TO_RIGHT             [ ExecMethod = 
ExecuteTextDirection; StateMethod = GetTextDirectionState; ]
+       SID_ATTR_PARA_RIGHT_TO_LEFT             [ ExecMethod = 
ExecuteTextDirection; StateMethod = GetTextDirectionState; ]
+       SID_VERTICALTEXT_STATE                  [ StateMethod = 
GetTextDirectionState; Export = FALSE; ]
+       SID_CTLFONT_STATE                               [ StateMethod = 
GetTextDirectionState; Export = FALSE; ]
 
-    SID_ATTR_NUMBERFORMAT_VALUE       [ ExecMethod = ExecuteNumFormat; 
StateMethod = GetNumFormatState;]
-    SID_NUMBER_FORMAT       [ ExecMethod = ExecuteNumFormat; StateMethod = 
GetNumFormatState;]
+       SID_ATTR_NUMBERFORMAT_VALUE     [ ExecMethod = ExecuteNumFormat; 
StateMethod = GetNumFormatState;]
+       SID_NUMBER_FORMAT               [ ExecMethod = ExecuteNumFormat; 
StateMethod = GetNumFormatState;]
        SID_NUMBER_TWODEC               [ ExecMethod = ExecuteNumFormat;]
        SID_NUMBER_SCIENTIFIC   [ ExecMethod = ExecuteNumFormat;]
        SID_NUMBER_DATE                 [ ExecMethod = ExecuteNumFormat;]
@@ -124,26 +122,26 @@ interface FormatForSelection
        SID_NUMBER_INCDEC               [ ExecMethod = ExecuteNumFormat;]
        SID_NUMBER_DECDEC               [ ExecMethod = ExecuteNumFormat;]
 
-    SID_NUMBER_TYPE_FORMAT  [ ExecMethod = ExecuteNumFormat;StateMethod = 
GetNumFormatState; ]
+       SID_NUMBER_TYPE_FORMAT  [ ExecMethod = ExecuteNumFormat;StateMethod = 
GetNumFormatState; ]
 
-       SID_ATTR_BORDER                         [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; ]       //XXX
-       SID_ATTR_BORDER_INNER           [                           StateMethod 
= GetBorderState; ] // status()
-    SID_ATTR_BORDER_OUTER       [ ExecMethod = ExecuteAttr; StateMethod = 
GetBorderState; ]
-    SID_ATTR_BORDER_SHADOW      [ ExecMethod = ExecuteAttr; StateMethod = 
GetBorderState; ]
+       SID_ATTR_BORDER                         [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; ] //XXX
+       SID_ATTR_BORDER_INNER           [                                       
                StateMethod = GetBorderState; ] // status()
+       SID_ATTR_BORDER_OUTER           [ ExecMethod = ExecuteAttr; StateMethod 
= GetBorderState; ]
+       SID_ATTR_BORDER_SHADOW          [ ExecMethod = ExecuteAttr; StateMethod 
= GetBorderState; ]
        SID_ATTR_ALIGN_LINEBREAK        [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; ]
        SID_FRAME_LINESTYLE                     [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; ]
        SID_FRAME_LINECOLOR                     [ ExecMethod = ExecuteAttr; 
StateMethod = GetAttrState; ]
        SID_ATTR_BORDER_DIAG_TLBR       [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; ]
        SID_ATTR_BORDER_DIAG_BLTR       [ ExecMethod = ExecuteAttr; StateMethod 
= GetAttrState; ]
 
-    SID_FORMATPAINTBRUSH    [ ExecMethod = ExecFormatPaintbrush; StateMethod = 
StateFormatPaintbrush; ]
+       SID_FORMATPAINTBRUSH    [ ExecMethod = ExecFormatPaintbrush; 
StateMethod = StateFormatPaintbrush; ]
 }
 
 
- // ===========================================================================
+// ===========================================================================
 shell ScFormatShell
 {
-       import FormatForSelection[Automation];
-//     import Interior ".Interior";
-       import TableFont ".Font";
+       import FormatForSelection[Automation] ;
+//     import Interior ".Interior" ;
+       import TableFont ".Font" ;
 }
diff --git a/main/sc/sdi/graphsh.sdi b/main/sc/sdi/graphsh.sdi
index 0c516a7117..24b16622a6 100644
--- a/main/sc/sdi/graphsh.sdi
+++ b/main/sc/sdi/graphsh.sdi
@@ -19,129 +19,127 @@
  *
  *************************************************************/
 
-
-
 interface GraphSelection
 {
-       //      filters
+       // filters
 
        SID_GRFFILTER
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_INVERT
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_SMOOTH
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_SHARPEN
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_REMOVENOISE
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_SOBEL
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_MOSAIC
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_EMBOSS
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_POSTER
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_POPART
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_SEPIA
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
        SID_GRFFILTER_SOLARIZE
        [
-               ExecMethod = ExecuteFilter;
-               StateMethod = GetFilterState;
+               ExecMethod = ExecuteFilter ;
+               StateMethod = GetFilterState ;
        ]
 
        // other graphics functions
 
        SID_ATTR_GRAF_MODE
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_RED
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_GREEN
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_BLUE
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_LUMINANCE
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_CONTRAST
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_GAMMA
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_TRANSPARENCE
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
        SID_ATTR_GRAF_CROP
        [
-               ExecMethod = Execute;
-               StateMethod = GetAttrState;
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
+       ]
+       SID_COLOR_SETTINGS
+       [
+               ExecMethod = Execute ;
+               StateMethod = GetAttrState ;
        ]
-        SID_COLOR_SETTINGS
-        [
-                ExecMethod = Execute;
-                StateMethod = GetAttrState;
-        ]
 }
 
- // ===========================================================================
+// ===========================================================================
 shell ScGraphicShell : ScDrawShell
 {
-       import GraphSelection;
+       import GraphSelection ;
 }
diff --git a/main/sc/sdi/mediash.sdi b/main/sc/sdi/mediash.sdi
index 38afd8784a..e700f10aeb 100644
--- a/main/sc/sdi/mediash.sdi
+++ b/main/sc/sdi/mediash.sdi
@@ -19,8 +19,6 @@
  *
  *************************************************************/
 
-
-
 interface MediaSelection
 {
        SID_AVMEDIA_TOOLBOX
@@ -30,7 +28,7 @@ interface MediaSelection
        ]
 }
 
- // ===========================================================================
+// ===========================================================================
 shell ScMediaShell : ScDrawShell
 {
        import MediaSelection;
diff --git a/main/sc/sdi/oleobjsh.sdi b/main/sc/sdi/oleobjsh.sdi
index fa13e439a7..dc6ff5b105 100644
--- a/main/sc/sdi/oleobjsh.sdi
+++ b/main/sc/sdi/oleobjsh.sdi
@@ -19,7 +19,7 @@
  *
  *************************************************************/
 
- // ===========================================================================
+// ===========================================================================
 shell ScOleObjectShell : ScDrawShell
 {
 }
diff --git a/main/sc/sdi/pgbrksh.sdi b/main/sc/sdi/pgbrksh.sdi
index c6f10dcbe7..d62d3b82c2 100644
--- a/main/sc/sdi/pgbrksh.sdi
+++ b/main/sc/sdi/pgbrksh.sdi
@@ -19,9 +19,7 @@
  *
  *************************************************************/
 
-
-
- // ===========================================================================
+// ===========================================================================
 shell ScPageBreakShell
 {
 }
diff --git a/main/sc/sdi/prevwsh.sdi b/main/sc/sdi/prevwsh.sdi
index 1b0471c3e2..c8e42dfea8 100644
--- a/main/sc/sdi/prevwsh.sdi
+++ b/main/sc/sdi/prevwsh.sdi
@@ -19,7 +19,6 @@
  *
  *************************************************************/
 
-
 interface TablePrintPreview
 {
        //      von Basic aus nicht erreichbar, darum alles mit Export = FALSE
@@ -34,9 +33,9 @@ interface TablePrintPreview
        SID_PREVIEW_PREVIOUS    [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
        SID_PREVIEW_FIRST               [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_PREVIEW_LAST                [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-       SID_PREVIEW_MARGIN      [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
-       SID_PREVIEW_SCALINGFACTOR   [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
-       SID_ATTR_ZOOMSLIDER     [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
+       SID_PREVIEW_MARGIN              [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_PREVIEW_SCALINGFACTOR       [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
+       SID_ATTR_ZOOMSLIDER             [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
 
        SfxVoidItem GoUpBlock SID_CURSORPAGEUP
        (
@@ -45,7 +44,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -57,7 +56,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -72,7 +71,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -83,7 +82,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -94,7 +93,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -106,7 +105,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -115,7 +114,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -124,7 +123,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -133,7 +132,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -142,7 +141,7 @@ interface TablePrintPreview
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               Export = FALSE;
+               Export = FALSE ;
                GroupId = GID_INTERN ;
                Cachable ;
        ]
@@ -154,12 +153,12 @@ interface TablePrintPreview
        SID_REPEAT                      [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
        SID_PRINTPREVIEW        [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ] // ole() api()
        SID_PREVIEW_CLOSE       [ ExecMethod = Execute; StateMethod = GetState; 
Export = FALSE; ]
-    SID_CANCEL          [ ExecMethod = Execute; StateMethod = GetState; Export 
= FALSE; ]
+       SID_CANCEL                      [ ExecMethod = Execute; StateMethod = 
GetState; Export = FALSE; ]
 }
 
 
- // ===========================================================================
+// ===========================================================================
 shell ScPreviewShell
 {
-       import TablePrintPreview;
+       import TablePrintPreview ;
 }
diff --git a/main/sc/sdi/tabpopsh.sdi b/main/sc/sdi/tabpopsh.sdi
index ec5e59d131..3c1b26847e 100644
--- a/main/sc/sdi/tabpopsh.sdi
+++ b/main/sc/sdi/tabpopsh.sdi
@@ -19,8 +19,7 @@
  *
  *************************************************************/
 
-
 shell ScTabPopShell
 {
-       //      nix drin
+       // nothing there
 }
diff --git a/main/sd/sdi/app.sdi b/main/sd/sdi/app.sdi
index 52a5f974d6..9a052d798a 100644
--- a/main/sd/sdi/app.sdi
+++ b/main/sd/sdi/app.sdi
@@ -34,8 +34,8 @@ interface StarImpress
 
        SID_ATTR_METRIC
        [
-               ExecMethod = Execute;
-               StateMethod = GetState;
+               ExecMethod = Execute ;
+               StateMethod = GetState ;
        ]
 
        SID_SD_AUTOPILOT // ole : ?, status : ?
diff --git a/main/sd/sdi/docshell.sdi b/main/sd/sdi/docshell.sdi
index 9b7d892343..6c9ac4904b 100644
--- a/main/sd/sdi/docshell.sdi
+++ b/main/sd/sdi/docshell.sdi
@@ -19,8 +19,6 @@
  *
  *************************************************************/
 
-
-
 interface ImpressDocument : DrawDocument
 [
        uuid ( "D8E15AE0-2FB4-11CF-89CA-008029E4B0B1" ) ;
diff --git a/main/sfx2/sdi/appslots.sdi b/main/sfx2/sdi/appslots.sdi
index b66d2206eb..b904eec722 100644
--- a/main/sfx2/sdi/appslots.sdi
+++ b/main/sfx2/sdi/appslots.sdi
@@ -19,8 +19,6 @@
  *
  *************************************************************/
 
-
-
 interface Application
 [
        Automation = FALSE ;
@@ -38,7 +36,7 @@ interface Application
        SID_PICKLIST // ole(no) api(no)
        [
        ]
-    SID_MDIWINDOWLIST // ole(no) api(no)
+       SID_MDIWINDOWLIST // ole(no) api(no)
        [
        ]
        SID_ABOUT // ole(no) api(final/play/rec)
@@ -54,7 +52,7 @@ interface Application
                ExecMethod = MiscExec_Impl ;
                StateMethod = MiscState_Impl ;
        ]
-    SID_LOGOUT // ole(req) api(final/play)
+       SID_LOGOUT // ole(req) api(final/play)
        [
        ]
        SID_HELPINDEX // ole(no) api(final/todo)
@@ -130,7 +128,7 @@ interface Application
        SID_TEMPLATE_ADDRESSBOKSOURCE // ole(no) api(final/play/rec)
        [
                ExecMethod = MiscExec_Impl ;
-        StateMethod = MiscState_Impl ;
+               StateMethod = MiscState_Impl ;
        ]
        SID_ATTR_UNDO_COUNT // ole(no) api(final/play)
        [
@@ -147,17 +145,17 @@ interface Application
                ExecMethod = MiscExec_Impl ;
                StateMethod = MiscState_Impl ;
        ]
-    SID_CRASH
-    [
+       SID_CRASH
+       [
                ExecMethod = MiscExec_Impl ;
-    ]
-    SID_UPDATE_CONFIG
-    [
+       ]
+       SID_UPDATE_CONFIG
+       [
                ExecMethod = MiscExec_Impl ;
-    ]
-    SID_ADDONS
-    [
-    ]
+       ]
+       SID_ADDONS
+       [
+       ]
        SID_SHOW_IME_STATUS_WINDOW
        [
                ExecMethod = MiscExec_Impl ;
@@ -184,8 +182,8 @@ interface Application
 
 shell SfxApplication
 {
-    import Application [Automation];
-    import Documents "Documents";
+       import Application [Automation] ;
+       import Documents "Documents" ;
 
        SID_NEWDOCDIRECT // ole(no) api(no)
        [
@@ -198,68 +196,68 @@ shell SfxApplication
        ]
        SID_BASICIDE_APPEAR // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
-       SID_SCRIPTORGANIZER  // status(final|play)
+       SID_SCRIPTORGANIZER // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
-       SID_MACROORGANIZER  // status(final|play)
+       SID_MACROORGANIZER // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
-       SID_RUNMACRO  // status(final|play)
+       SID_RUNMACRO // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
-       SID_BASICCHOOSER  // status(final|play)
+       SID_BASICCHOOSER // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
-       SID_INET_DLG  // status(final)
+       SID_INET_DLG // status(final)
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
 
        //----------------------------------------------------------------------
 
        SID_OFFICE_CHECK_PLZ
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
        SID_SD_AUTOPILOT // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
-               StateMethod = OfaState_Impl;
+               ExecMethod = OfaExec_Impl ;
+               StateMethod = OfaState_Impl ;
        ]
        SID_NEWSD // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
-               StateMethod = OfaState_Impl;
+               ExecMethod = OfaExec_Impl ;
+               StateMethod = OfaState_Impl ;
        ]
-       FN_LABEL  // status(final|play)
+       FN_LABEL // status(final|play)
        [
-               ExecMethod = OfaExec_Impl;
-               StateMethod = OfaState_Impl;
+               ExecMethod = OfaExec_Impl ;
+               StateMethod = OfaState_Impl ;
        ]
-       FN_BUSINESS_CARD  // status(final|play)
+       FN_BUSINESS_CARD // status(final|play)
 
        [
-               ExecMethod = OfaExec_Impl;
-               StateMethod = OfaState_Impl;
+               ExecMethod = OfaExec_Impl ;
+               StateMethod = OfaState_Impl ;
        ]
-       FN_XFORMS_INIT  // #i31958# - new XForms document
+       FN_XFORMS_INIT // #i31958# - new XForms document
        [
-               ExecMethod = OfaExec_Impl;
-               StateMethod = OfaState_Impl;
+               ExecMethod = OfaExec_Impl ;
+               StateMethod = OfaState_Impl ;
        ]
        SID_COMP_BIBLIOGRAPHY
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
        SID_ADDRESS_DATA_SOURCE
        [
-               ExecMethod = OfaExec_Impl;
+               ExecMethod = OfaExec_Impl ;
        ]
        SID_AUTO_CORRECT_DLG
        [
@@ -269,14 +267,12 @@ shell SfxApplication
        [
                ExecMethod = OfaExec_Impl ;
        ]
-        SID_MORE_DICTIONARIES
-        [
-                ExecMethod = OfaExec_Impl ;
-        ]
+       SID_MORE_DICTIONARIES
+       [
+               ExecMethod = OfaExec_Impl ;
+       ]
 }
 
 shell SfxModule
 {
 }
-
-// eof ------------------------------------------------------------------------
diff --git a/main/sw/sdi/_basesh.sdi b/main/sw/sdi/_basesh.sdi
index cd6d5f4ff6..2f0d675807 100644
--- a/main/sw/sdi/_basesh.sdi
+++ b/main/sw/sdi/_basesh.sdi
@@ -21,13 +21,13 @@
 
 interface BaseTextSelection
 [
-       Automation = FALSE;
+       Automation = FALSE ;
 ]
 {
        SID_ATTR_BRUSH
        [
                ExecMethod = Execute ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_DELETE // status(final|play)
@@ -48,7 +48,7 @@ interface BaseTextSelection
        [
                ExecMethod = ExecDelete ;
                StateMethod = NoState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_UNDO // status(final|play)
@@ -77,14 +77,14 @@ interface BaseTextSelection
        [
                ExecMethod = ExecUndo ;
                StateMethod = StateUndo ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_CUT // status(final|play)
        [
                ExecMethod = ExecClpbrd ;
                StateMethod = StateClpbrd ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_COPY // status(final|play)
@@ -97,28 +97,28 @@ interface BaseTextSelection
        [
                ExecMethod = ExecClpbrd ;
                StateMethod = StateClpbrd ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_CLIPBOARD_FORMAT_ITEMS // status(final|play)
        [
                StateMethod = StateClpbrd ;
                ExecMethod = ExecClpbrd ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_PASTE_UNFORMATTED // status(final|play)
        [
                ExecMethod = ExecClpbrd ;
                StateMethod = StateClpbrd ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_PASTE_SPECIAL // status(final|play)
        [
                ExecMethod = ExecClpbrd ;
                StateMethod = StateClpbrd ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_REPAGINATE // status(final|play)
@@ -130,7 +130,7 @@ interface BaseTextSelection
        FN_CHANGE_DBFIELD
        [
                ExecMethod = ExecField ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_UPDATE_FIELDS // status(final|play)
@@ -158,7 +158,7 @@ interface BaseTextSelection
 
        FN_FRAME_TO_ANCHOR // status()
        [
-               /*OS: Datentypen unvertraeglich ?? */
+               /*OS: Datentypen unverträglich? */
                ExecMethod = Execute ;
                StateMethod = NoState ;
        ]
@@ -207,9 +207,9 @@ interface BaseTextSelection
 
        SID_GALLERY_ENABLE_ADDCOPY
        [
-               Export = FALSE;
-               StateMethod = GetState;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               Export = FALSE ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_BACKGROUND_COLOR // status()
@@ -217,7 +217,7 @@ interface BaseTextSelection
                ExecMethod = ExecBckCol ;
                StateMethod = GetBckColState ;
                Cachable , AutoUpdate ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_EDIT_REGION // status(final|play)
@@ -228,77 +228,77 @@ interface BaseTextSelection
 
        FN_INSERT_REGION // status()
        [
-               ExecMethod = InsertRegionDialog;
-               StateMethod = GetState;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = InsertRegionDialog ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_FORMAT_PAGE_DLG // status(final|play)
        [
                ExecMethod = ExecDlg ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_FORMAT_PAGE_COLUMN_DLG // status(final|play)
        [
                ExecMethod = ExecDlg ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_FORMAT_PAGE_SETTING_DLG
        [
                ExecMethod = ExecDlg ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_CONVERT_TABLE_TO_TEXT
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_CONVERT_TEXT_TO_TABLE
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
        FN_CONVERT_TEXT_TABLE // status(final|play)
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
        FN_FORMAT_BORDER_DLG // status(final|play)
        [
                ExecMethod = ExecDlg ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_ATTR_BORDER_INNER // status()
        [
                StateMethod = GetBorderState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
                SID_ATTR_BORDER_OUTER // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetBorderState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_BORDER_REDUCED_MODE
        [
                StateMethod = GetBorderState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_FORMAT_BACKGROUND_DLG // status(final|play)
        [
                ExecMethod = ExecDlg ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SfxBoolItem StyleWatercanMode SID_STYLE_WATERCAN // status()
@@ -310,9 +310,9 @@ interface BaseTextSelection
                ) ;
                ExecMethod = Execute ;
                StateMethod = StateStyle ;
-                       NoRecord;
+                       NoRecord ;
                GroupId = GID_TEMPLATE ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_STYLE_UPDATE_BY_EXAMPLE // status()
@@ -325,14 +325,14 @@ interface BaseTextSelection
        [
                ExecMethod = Execute ;
                StateMethod = StateStyle ;
-               FastCall = TRUE; // fuer Macroausfuehrung!
+               FastCall = TRUE; // für Macroausführung!
        ]
        SID_STYLE_APPLY // status(fina|play)
        [
                ExecMethod = Execute ;
                StateMethod = StateStyle ;
-               FastCall = TRUE;// fuer Macroausfuehrung!
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               FastCall = TRUE;// für Macroausführung!
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_STYLE_FAMILY1 // status(fina|play)
@@ -360,7 +360,7 @@ interface BaseTextSelection
                StateMethod = StateStyle ;
        ]
 
-        //OS: Selection.Escape gibt es zusaetzlich zu Window.Escape
+        //OS: Selection.Escape gibt es zusätzlich zu Window.Escape
 
        FN_ESCAPE // status(final|play|rec)
        [
@@ -378,42 +378,42 @@ interface BaseTextSelection
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
-// Methode fuer Rahmen und Objekte
+// Methods for frames and objects
        FN_TOOL_ANCHOR
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_TOOL_ANCHOR_PARAGRAPH
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_TOOL_ANCHOR_CHAR
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_TOOL_ANCHOR_AT_CHAR
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_TOOL_ANCHOR_FRAME
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_UPDATE_ALL_LINKS // status()
@@ -430,93 +430,92 @@ interface BaseTextSelection
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAP_IDEAL // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_NOWRAP // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAPTHRU // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAPTHRU_TRANSP // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAP_CONTOUR // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_WRAP_ANCHOR_ONLY // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAP_LEFT // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
        FN_FRAME_WRAP_RIGHT // status()
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
 
 
-
        SID_GALLERY_BG_BRUSH
        [
                ExecMethod = ExecuteGallery;
                StateMethod = GetGalleryState;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-               Export = FALSE;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+               Export = FALSE ;
        ]
        SID_ATTR_BORDER_SHADOW // status(final|play)
        [
                ExecMethod = Execute ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        FN_XFORMS_DESIGN_MODE
        [
-               ExecMethod = Execute;
-               StateMethod = GetState;
+               ExecMethod = Execute ;
+               StateMethod = GetState ;
        ]
 }
diff --git a/main/sw/sdi/annotsh.sdi b/main/sw/sdi/annotsh.sdi
index f8dc751481..39c278707f 100644
--- a/main/sw/sdi/annotsh.sdi
+++ b/main/sw/sdi/annotsh.sdi
@@ -19,39 +19,37 @@
  *
  *************************************************************/
 
-
-
 interface Annotation : _Annotation
 [
        uuid = "CA0C4280-293D-11D1-89CB-008029E4B0B1"
 ]
 {
 
-    SID_THESAURUS // api:
+       SID_THESAURUS // api:
        [
                ExecMethod = ExecLingu ;
                StateMethod = GetLinguState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_HANGUL_HANJA_CONVERSION  // api:
-    [
-        ExecMethod = ExecLingu ;
-        StateMethod = GetLinguState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
+       SID_HANGUL_HANJA_CONVERSION // api:
+       [
+               ExecMethod = ExecLingu ;
+               StateMethod = GetLinguState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
 
-    SID_CHINESE_CONVERSION  // api:
-    [
-        ExecMethod = ExecLingu ;
-        StateMethod = GetLinguState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
+       SID_CHINESE_CONVERSION // api:
+       [
+               ExecMethod = ExecLingu ;
+               StateMethod = GetLinguState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
 
-       SID_STYLE_CATALOG  // ole(no) api(play/rec)
+       SID_STYLE_CATALOG // ole(no) api(play/rec)
        [
                StateMethod = StateDisableItems ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TWAIN_SELECT
@@ -75,214 +73,214 @@ interface Annotation : _Annotation
                StateMethod = GetState;
        ]
 
-       SID_HYPERLINK_SETLINK  // status()
+       SID_HYPERLINK_SETLINK // status()
        [
                ExecMethod = Exec ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
        SID_HYPERLINK_GETLINK // status()
        [
                StateMethod = StateInsert ;
        ]
 
-    FN_INSERT_SOFT_HYPHEN // status(final|play)
-    [
-        ExecMethod = Exec ;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    FN_INSERT_HARDHYPHEN // status()
-    [
-        ExecMethod = Exec ;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    FN_INSERT_HARD_SPACE // status(final|play)
-    [
-        ExecMethod = Exec ;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_INSERT_RLM
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_INSERT_LRM
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_INSERT_ZWSP
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_INSERT_ZWNBSP
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_ATTR_PARA_LEFT_TO_RIGHT
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_ATTR_PARA_RIGHT_TO_LEFT
-    [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_TEXTDIRECTION_LEFT_TO_RIGHT
+       FN_INSERT_SOFT_HYPHEN // status(final|play)
+       [
+               ExecMethod = Exec ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       FN_INSERT_HARDHYPHEN // status()
+       [
+               ExecMethod = Exec ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       FN_INSERT_HARD_SPACE // status(final|play)
+       [
+               ExecMethod = Exec ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_INSERT_RLM
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_INSERT_LRM
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_INSERT_ZWSP
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_INSERT_ZWNBSP
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_ATTR_PARA_LEFT_TO_RIGHT
        [
                ExecMethod = Exec ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_ATTR_PARA_RIGHT_TO_LEFT
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_TEXTDIRECTION_LEFT_TO_RIGHT
+       [
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TEXTDIRECTION_TOP_TO_BOTTOM
        [
                ExecMethod = Exec ;
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_VERTICALTEXT_STATE
        [
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_CTLFONT_STATE
-    [
+       SID_CTLFONT_STATE
+       [
                StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_TRANSLITERATE_SENTENCE_CASE
-    [
-        ExecMethod = ExecTransliteration;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_TRANSLITERATE_TITLE_CASE
-    [
-        ExecMethod = ExecTransliteration;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
-
-    SID_TRANSLITERATE_TOGGLE_CASE
-    [
-        ExecMethod = ExecTransliteration;
-        StateMethod = NoState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
-    ]
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_TRANSLITERATE_SENTENCE_CASE
+       [
+               ExecMethod = ExecTransliteration ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_TRANSLITERATE_TITLE_CASE
+       [
+               ExecMethod = ExecTransliteration ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
+
+       SID_TRANSLITERATE_TOGGLE_CASE
+       [
+               ExecMethod = ExecTransliteration ;
+               StateMethod = NoState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
+       ]
 
        SID_TRANSLITERATE_UPPER
        [
-               ExecMethod = ExecTransliteration;
+               ExecMethod = ExecTransliteration ;
                StateMethod = NoState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TRANSLITERATE_LOWER
        [
-               ExecMethod = ExecTransliteration;
+               ExecMethod = ExecTransliteration ;
                StateMethod = NoState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TRANSLITERATE_HALFWIDTH
        [
-               ExecMethod = ExecTransliteration;
-        StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = ExecTransliteration ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TRANSLITERATE_FULLWIDTH
        [
-               ExecMethod = ExecTransliteration;
-        StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = ExecTransliteration ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TRANSLITERATE_HIRAGANA
        [
-               ExecMethod = ExecTransliteration;
-        StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = ExecTransliteration ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_TRANSLITERATE_KATAGANA
        [
-               ExecMethod = ExecTransliteration;
-        StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = ExecTransliteration ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_WORDLINEMODE // status(final|play)
+       SID_ATTR_CHAR_WORDLINEMODE // status(final|play)
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_RELIEF
+       SID_ATTR_CHAR_RELIEF
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_LANGUAGE // status(final|play)
+       SID_ATTR_CHAR_LANGUAGE // status(final|play)
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_KERNING // status(final|play)
+       SID_ATTR_CHAR_KERNING // status(final|play)
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_AUTOKERN // // status(final|play)
+       SID_ATTR_CHAR_AUTOKERN // // status(final|play)
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_ATTR_CHAR_ESCAPEMENT // status(final|play)
        [
-        ExecMethod = Exec ;
-        StateMethod = GetState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               ExecMethod = Exec ;
+               StateMethod = GetState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_ATTR_CHAR_SCALEWIDTH // status()
+       SID_ATTR_CHAR_SCALEWIDTH // status()
        [
                ExecMethod = Exec ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
        SID_STYLE_FAMILY1
@@ -358,15 +356,15 @@ interface Annotation : _Annotation
        [
                ExecMethod = ExecLingu ;
                StateMethod = GetLinguState ;
-               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ;
        ]
 
-    SID_THES
-    [
-        ExecMethod = ExecLingu ;
-        StateMethod = GetLinguState ;
-        DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR";  // e.g. disable for 
read-only documents
-    ]
+       SID_THES
+       [
+               ExecMethod = ExecLingu ;
+               StateMethod = GetLinguState ;
+               DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR" ; // e.g. disable 
for read-only documents
+       ]
 
 }
 
diff --git a/main/sw/sdi/grfsh.sdi b/main/sw/sdi/grfsh.sdi
index afc72fd903..ccf0f3629e 100644
--- a/main/sw/sdi/grfsh.sdi
+++ b/main/sw/sdi/grfsh.sdi
@@ -19,9 +19,6 @@
  *
  *************************************************************/
 
-
-
-
 interface TextGraphic : BaseTextGraphic
 [
        uuid = "1885FE00-111C-101D-9757-6E74207A7520"
@@ -29,7 +26,7 @@ interface TextGraphic : BaseTextGraphic
 {
 }
 
- //=========================================================================
+//=========================================================================
 
 shell SwGrfShell : SwBaseShell
 
diff --git a/main/sw/sdi/mediash.sdi b/main/sw/sdi/mediash.sdi
index ba07007206..80798c8bc4 100644
--- a/main/sw/sdi/mediash.sdi
+++ b/main/sw/sdi/mediash.sdi
@@ -19,9 +19,6 @@
  *
  *************************************************************/
 
-
-
-
 interface TextMedia : BaseTextMedia
 [
        uuid = "54268616-9970-4ad9-8798-280206fc160a"
@@ -29,7 +26,7 @@ interface TextMedia : BaseTextMedia
 {
 }
 
- //=========================================================================
+//=========================================================================
 
 shell SwMediaShell : SwBaseShell
 
diff --git a/main/sw/sdi/olesh.sdi b/main/sw/sdi/olesh.sdi
index e74039bfe4..38d77ef973 100644
--- a/main/sw/sdi/olesh.sdi
+++ b/main/sw/sdi/olesh.sdi
@@ -19,8 +19,6 @@
  *
  *************************************************************/
 
-
-
 interface TextOLEObject : BaseTextOLEObject
 [
        uuid = "B156B300-39FC-101D-9757-C667E8298000"

Reply via email to