diff options
Diffstat (limited to 'odk')
3 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java index 81a4e8fb8564..f5ef2a97088c 100644 --- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java +++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java @@ -304,7 +304,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob final String sFinalTitle = sTitle; final String sFinalMessage = sMessage; - // On Mac OS X, AWT/Swing must not be accessed from the AppKit thread, so call + // On macOS, AWT/Swing must not be accessed from the AppKit thread, so call // SwingUtilities.invokeLater always on a fresh thread to avoid that problem // (also, the current thread must not wait for that fresh thread to terminate, // as that would cause a deadlock if this thread is the AppKit thread): diff --git a/odk/examples/DevelopersGuide/OfficeBean/Makefile b/odk/examples/DevelopersGuide/OfficeBean/Makefile index 2dfc678ee9e2..4fce60578b58 100644 --- a/odk/examples/DevelopersGuide/OfficeBean/Makefile +++ b/odk/examples/DevelopersGuide/OfficeBean/Makefile @@ -61,7 +61,7 @@ SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(URE .PHONY: ALL ifeq "$(OS)" "MACOSX" ALL : - @printf 'This example does not work on Mac OS X\n' + @printf 'This example does not work on macOS\n' else ALL : \ OOoBeanViewer diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile index 2048ade63d98..b4179de724b2 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile @@ -82,7 +82,7 @@ endif .PHONY: ALL ifeq "$(OS)" "MACOSX" ALL : - @printf 'This example does not work on Mac OS X\n' + @printf 'This example does not work on macOS\n' else ALL : $(SUBDIR) \ $(EXAMPLE_NAME) |