diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2021-04-29 10:32:54 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2021-04-29 13:00:15 +0200 |
commit | 5e58cc6fa84ba77b948cd603e83ad817cedfeb03 (patch) | |
tree | 9dea9ce31b1fac5dad6740b0b8c3e0bbeb03bae1 | |
parent | edb64cc363e782470870089041c48993d7c34de5 (diff) |
Fix typo SID_TEMPLATE_ADDRESSBOKSOURCE->SID_TEMPLATE_ADDRESSBOOKSOURCE
Change-Id: I6a23cdd71dc3476c415e710dad4a33c9d0c20202
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114839
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r-- | include/sfx2/sfxsids.hrc | 2 | ||||
-rw-r--r-- | sfx2/sdi/appslots.sdi | 2 | ||||
-rw-r--r-- | sfx2/sdi/sfx.sdi | 2 | ||||
-rw-r--r-- | sfx2/source/appl/appserv.cxx | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/include/sfx2/sfxsids.hrc b/include/sfx2/sfxsids.hrc index 3f9d4a232fb7..c6073a795b80 100644 --- a/include/sfx2/sfxsids.hrc +++ b/include/sfx2/sfxsids.hrc @@ -327,7 +327,7 @@ class SvxSearchItem; // Floating Window Template #define SID_STYLE_DESIGNER (SID_SFX_START + 539) -#define SID_TEMPLATE_ADDRESSBOKSOURCE (SID_SFX_START + 1655) +#define SID_TEMPLATE_ADDRESSBOOKSOURCE (SID_SFX_START + 1655) // Ruby dialog #define SID_RUBY_DIALOG (SID_SFX_START + 1656) diff --git a/sfx2/sdi/appslots.sdi b/sfx2/sdi/appslots.sdi index 5dbee7376b6e..f5ffb700388a 100644 --- a/sfx2/sdi/appslots.sdi +++ b/sfx2/sdi/appslots.sdi @@ -95,7 +95,7 @@ interface Application ExecMethod = MiscExec_Impl ; StateMethod = MiscState_Impl ; ] - SID_TEMPLATE_ADDRESSBOKSOURCE // ole(no) api(final/play/rec) + SID_TEMPLATE_ADDRESSBOOKSOURCE // ole(no) api(final/play/rec) [ ExecMethod = MiscExec_Impl ; StateMethod = MiscState_Impl ; diff --git a/sfx2/sdi/sfx.sdi b/sfx2/sdi/sfx.sdi index 425724440d13..ae37ce14448f 100644 --- a/sfx2/sdi/sfx.sdi +++ b/sfx2/sdi/sfx.sdi @@ -265,7 +265,7 @@ SfxVoidItem CharmapControl SID_CHARMAP_CONTROL ] -SfxVoidItem AddressBookSource SID_TEMPLATE_ADDRESSBOKSOURCE +SfxVoidItem AddressBookSource SID_TEMPLATE_ADDRESSBOOKSOURCE () [ AutoUpdate = FALSE, diff --git a/sfx2/source/appl/appserv.cxx b/sfx2/source/appl/appserv.cxx index b58d4f891a53..3ae22dedd324 100644 --- a/sfx2/source/appl/appserv.cxx +++ b/sfx2/source/appl/appserv.cxx @@ -633,7 +633,7 @@ void SfxApplication::MiscExec_Impl( SfxRequest& rReq ) break; } - case SID_TEMPLATE_ADDRESSBOKSOURCE: + case SID_TEMPLATE_ADDRESSBOOKSOURCE: { svt::AddressBookSourceDialog aDialog(rReq.GetFrameWeld(), ::comphelper::getProcessComponentContext()); aDialog.run(); @@ -1046,7 +1046,7 @@ void SfxApplication::MiscState_Impl(SfxItemSet &rSet) { switch(nWhich) { - case SID_TEMPLATE_ADDRESSBOKSOURCE: + case SID_TEMPLATE_ADDRESSBOOKSOURCE: if ( !SvtModuleOptions().IsModuleInstalled(SvtModuleOptions::EModule::DATABASE) ) rSet.Put(SfxVisibilityItem(nWhich, false)); break; |