diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-20 18:05:48 +0200 |
---|---|---|
committer | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-07-20 22:39:25 +0200 |
commit | dd950a6edbd3abc45409724be8cabe1dee71b63d (patch) | |
tree | ad898067d9e7b9af0c06ed21fc83b6f00f22d6a1 /odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment | |
parent | 2286eb08e7a6a820ec71ed22945cf422fa88a16a (diff) |
Fix typos
Change-Id: Ib361243332b7219c0073c787c378c648e44705f2
Reviewed-on: https://gerrit.libreoffice.org/75487
Tested-by: Jenkins
Reviewed-by: Andrea Gelmini <andrea.gelmini@gelma.net>
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment')
3 files changed, 5 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java index 12246aca65a4..0f885f636934 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java @@ -207,7 +207,7 @@ public class DocumentView extends JFrame { // create view frame (as a XFrame!) here // Look for right view mode set by user command line parameter. - // First try to get a new unambigous frame name from our global ViewContainer. + // First try to get a new unambiguous frame name from our global ViewContainer. if(ViewContainer.mbInplace) { // inplace document view can't be initialized without a visible parent window hierarchy! diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java index e566ba45ba6e..7ce871983db9 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java @@ -134,7 +134,7 @@ public class FunctionHelper * the deprecated one not exist we get an empty frame, we can try to use the new service. * * @param xSMGR - * we nee the remote service manager to create this task/frame service + * we need the remote service manager to create this task/frame service * * @return [com.sun.star.frame.XFrame] * the new created frame reference in case of success or null otherwise @@ -518,7 +518,7 @@ public class FunctionHelper // First prepare frame for loading // We must address it inside the frame tree without any complications. - // So we set an unambigous (we hope it) name and use it later. + // So we set an unambiguous (we hope it) name and use it later. // Don't forget to reset original name after that. sOldName = xFrame.getName(); String sTarget = "odk_officedev_desk"; diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java index f78115854b1d..f037949b0590 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java @@ -150,7 +150,7 @@ class StatusListener implements com.sun.star.frame.XStatusListener, /** - * In case we got an oneway listener callback - we had to use the office + * In case we got a oneway listener callback - we had to use the office * asynchronous then. This method is the callback from the started thread * (started inside the original oneway method). We found all parameters of * the original request packed inside a vector. Here we unpack it and @@ -243,7 +243,7 @@ class StatusListener implements com.sun.star.frame.XStatusListener, return; // enable/disable the control. - // Means: if the feature isn't available currently - we can't show an status really here. + // Means: if the feature isn't available currently - we can't show a status really here. // Then we should colorize it gray... m_rControl.setEnabled(aEvent.IsEnabled); |