diff options
author | Jean-Pierre Ledure <jp@ledure.be> | 2022-02-16 16:08:25 +0100 |
---|---|---|
committer | Jean-Pierre Ledure <jp@ledure.be> | 2022-02-17 10:54:09 +0100 |
commit | d94a4767437cdb12ee92265814b8b56f13448a09 (patch) | |
tree | a5ffe882610f4d550daa240aa3b234d83e40ff84 /wizards | |
parent | 8f7d355e7f153a940b85179f5bc54a506eeab05a (diff) |
ScriptForge - (SF_UI) Fix omission of ServiceName
The ServiceName property is part of the standard
norm for ScriptForge services.
It is used only internally.
Its omission in SF_UI caused the tree in construction
for help files to contain wrong redirections.
Change-Id: I51f1966ef463fffe62c9495dbc2ea0c152fa9667
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130004
Tested-by: Jean-Pierre Ledure <jp@ledure.be>
Tested-by: Jenkins
Reviewed-by: Jean-Pierre Ledure <jp@ledure.be>
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/scriptforge/SF_UI.xba | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/wizards/source/scriptforge/SF_UI.xba b/wizards/source/scriptforge/SF_UI.xba index c1726d1cdcb9..1caa90039264 100644 --- a/wizards/source/scriptforge/SF_UI.xba +++ b/wizards/source/scriptforge/SF_UI.xba @@ -142,6 +142,12 @@ Property Get ObjectType As String ObjectType = "SF_UI" End Property ' ScriptForge.SF_UI.ObjectType +REM ----------------------------------------------------------------------------- +Property Get ServiceName As String +''' Internal use + ServiceName = "ScriptForge.UI" +End Property ' ScriptForge.SF_UI.ServiceName + REM ===================================================================== METHODS REM ----------------------------------------------------------------------------- |