summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java4
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);