diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-11-27 11:40:49 +0100 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-11-29 14:08:26 +0100 |
commit | 9c0d40fbc7d01ff46b78b798361bf3a19cc18bdc (patch) | |
tree | a2afd07ced2da313c5cdc6183bb1ea7e832d9a7e /extensions | |
parent | a55d15e27f4290b9aaf5597161b2b3c5200d3f85 (diff) |
Rename Mac OS X to official name macOS in comments and documentation
Change-Id: I651b7f202fa52ff5f5357a11aa72c43eb7dc7f95
Reviewed-on: https://gerrit.libreoffice.org/64102
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/README | 2 | ||||
-rw-r--r-- | extensions/source/abpilot/datasourcehandling.hxx | 2 | ||||
-rw-r--r-- | extensions/source/abpilot/typeselectionpage.cxx | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/extensions/README b/extensions/README index b74ff369baa1..38df77e37fba 100644 --- a/extensions/README +++ b/extensions/README @@ -35,7 +35,7 @@ See extensions/source/activex/ == Spotlight provider == -On Mac OS X, this allows indexing ODF documents with Spotlight. +On macOS, this allows indexing ODF documents with Spotlight. See extensions/source/macosx/spotlight/ == Scanner support == diff --git a/extensions/source/abpilot/datasourcehandling.hxx b/extensions/source/abpilot/datasourcehandling.hxx index f7f794fd41cf..5a73f5ac6b04 100644 --- a/extensions/source/abpilot/datasourcehandling.hxx +++ b/extensions/source/abpilot/datasourcehandling.hxx @@ -77,7 +77,7 @@ namespace abp /// creates a new KDE address book data source ODataSource createNewKab( const OUString& _rName ); - /// creates a new Mac OS X address book data source + /// creates a new macOS address book data source ODataSource createNewMacab( const OUString& _rName ); /// creates a new dBase data source diff --git a/extensions/source/abpilot/typeselectionpage.cxx b/extensions/source/abpilot/typeselectionpage.cxx index d4decd9dc995..5e3d49e1cb1d 100644 --- a/extensions/source/abpilot/typeselectionpage.cxx +++ b/extensions/source/abpilot/typeselectionpage.cxx @@ -47,7 +47,7 @@ namespace abp //TODO: For now, try to keep offering the same choices like before the // Mozilla/MORK cleanup, even if the status of what driver actually // provides which functionality is somewhat unclear, see the discussions - // of fdo#57285 "Address Book Data Source Wizard lists 'Mac OS X address + // of fdo#57285 "Address Book Data Source Wizard lists 'macOS address // book' on Linux" and fdo#57322 "Moz-free LDAP Address Book driver." // In accordance with ancient OOo 3.3, this is as follows: // @@ -57,7 +57,7 @@ namespace abp // - KAB (if applicable) // - OTHER // - // On Mac OS X: + // On macOS: // - MACAB (if applicable) // - MORK (via mork driver, which is built unconditionally) // - OTHER @@ -97,7 +97,7 @@ namespace abp try { - // check whether Mac OS X address book is available + // check whether macOS address book is available Reference< XDriver > xDriver( xManager->getDriverByURL("sdbc:address:macab") ); if ( xDriver.is() ) bHaveMacab = true; |