diff options
author | apurvapriyadarshi <apriyadarshi.1995@gmail.com> | 2023-09-20 23:37:21 +0530 |
---|---|---|
committer | Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org> | 2023-09-25 13:04:27 +0200 |
commit | 31ca96ff3075343c8d0c334fc77a9d0969986d77 (patch) | |
tree | ab560fc6802d51f4e4dafd2a89d934ae828f20ad /odk | |
parent | fca39498dfc29a1c026ff854ca797ea39161124b (diff) |
tdf#146150 Use dispatch cmd for the corresponding SID
Change-Id: I0d987a8b10f2c69192d080b534a1d6aa71a6cf4d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157105
Tested-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakangas@libreoffice.org>
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java index 92ae178adc59..076669014d83 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java @@ -67,11 +67,11 @@ public class StatusView extends JPanel * const * These URL's describe available feature states. */ - private static final String FEATUREURL_FONT = "slot:10007"; - private static final String FEATUREURL_SIZE = "slot:10015"; - private static final String FEATUREURL_BOLD = "slot:10009"; - private static final String FEATUREURL_ITALIC = "slot:10008"; - private static final String FEATUREURL_UNDERLINE = "slot:10014"; + private static final String FEATUREURL_FONT = ".uno:CharFontName"; + private static final String FEATUREURL_SIZE = ".uno:FontHeight"; + private static final String FEATUREURL_BOLD = ".uno:Bold"; + private static final String FEATUREURL_ITALIC = ".uno:Italic"; + private static final String FEATUREURL_UNDERLINE = ".uno:Underline"; |