diff options
author | Noel Grandin <noel@peralex.com> | 2016-02-23 08:43:39 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-02-23 10:07:10 +0200 |
commit | 799eab3b3499be5846e13e6360cc01741a241f89 (patch) | |
tree | b08e00018f5bab230b6887175b721d4b60bf8a0e /sc | |
parent | 1e6dfe458079620a7192381dce9505e94a83518a (diff) |
methods in .SDI files don't use attributes
so simplify the parser and drop the square brackets
Change-Id: I3bab5f5b14e57d0cd1ed1a383fe21968f97b243a
Diffstat (limited to 'sc')
-rw-r--r-- | sc/sdi/docsh.sdi | 6 | ||||
-rw-r--r-- | sc/sdi/formatsh.sdi | 8 | ||||
-rw-r--r-- | sc/sdi/tabvwsh.sdi | 8 |
3 files changed, 7 insertions, 15 deletions
diff --git a/sc/sdi/docsh.sdi b/sc/sdi/docsh.sdi index 6964d6b35674..25852fb8472a 100644 --- a/sc/sdi/docsh.sdi +++ b/sc/sdi/docsh.sdi @@ -29,11 +29,7 @@ interface TableSelection INT16 Column SID_SC_CELLS, INT32 Row FN_PARAM_1 ) - [ - ] - UINT16 Index FID_TAB_INDEX - [ - ] + UINT16 Index FID_TAB_INDEX () FID_PROTECT_TABLE [ ExecMethod = Execute; StateMethod = GetState; ] FID_PROTECT_DOC [ ExecMethod = Execute; StateMethod = GetState; ] diff --git a/sc/sdi/formatsh.sdi b/sc/sdi/formatsh.sdi index 782f99b39b33..2c90f60e9855 100644 --- a/sc/sdi/formatsh.sdi +++ b/sc/sdi/formatsh.sdi @@ -39,12 +39,8 @@ interface TableFont interface FormatForSelection { //Auch das Basic muss wieder laufen - SbxObject Font SID_PROP_FONT - [ - ] - SbxObject Interior SID_PROP_INTERIOR // status(Final) - [ - ] + SbxObject Font SID_PROP_FONT () + SbxObject Interior SID_PROP_INTERIOR () // status(Final) // Slot's die in der DrawShell disabled werden. { SID_STYLE_FAMILY2 [ ExecMethod = ExecuteStyle; StateMethod = GetStyleState; ] diff --git a/sc/sdi/tabvwsh.sdi b/sc/sdi/tabvwsh.sdi index 3a25e81a7b1d..43a8e58dbf04 100644 --- a/sc/sdi/tabvwsh.sdi +++ b/sc/sdi/tabvwsh.sdi @@ -212,7 +212,7 @@ interface DataPilotTables interface DataPilotTable { - SbxObject DataPilotFields SID_PIVOT_FIELDS + SbxObject DataPilotFields SID_PIVOT_FIELDS () } interface DataPilotFields @@ -221,9 +221,9 @@ interface DataPilotFields interface DataPilotField { - String FieldName SID_PFIELD_NAME - UINT16 Orientation SID_PFIELD_ORIENTATION - UINT16 Function SID_PFIELD_FUNCTION + String FieldName SID_PFIELD_NAME () + UINT16 Orientation SID_PFIELD_ORIENTATION () + UINT16 Function SID_PFIELD_FUNCTION () } |