summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
index 2f41916e24ea..89980b7fcf4c 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
@@ -59,7 +59,7 @@ import com.sun.star.uno.UnoRuntime;
* Another reason for such extra class for listening:
* Most listener callbacks are asynchronoues [oneay] requests.
* And it's not allowed to call back synchronously there.
- * So we must start threads for updating something internaly.
+ * So we must start threads for updating something internally.
*
*/
class StatusListener implements com.sun.star.frame.XStatusListener,
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 63ae142deae9..aad53937aaae 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -207,7 +207,7 @@ public class StatusView extends JPanel
* Set new frame for this view and start listening for events imedatly.
* We create one status listener for every control we wish to update.
* And because the environment of the frame can be changed - these
- * listener refresh himself internaly for frame action events too.
+ * listener refresh himself internally for frame action events too.
* So we register it as such frame action listener only here.
* Rest is done automaticly ...
*