summaryrefslogtreecommitdiff
path: root/odk/examples
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:12 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-02-22 11:12:33 +0100
commit1443a9f7abce965d1ca3ccf0a8f92562ebf82c07 (patch)
treec753e7c1cd9ec33b2dbeaa9defafcdd1b3355b8a /odk/examples
parent45739fad0b1d55e72cc1ed508b8ea33a74219290 (diff)
[Uu]sefull -> [Uu]seful
Change-Id: I5dad83789ff9b6815561208679a5e19821041e1f
Diffstat (limited to 'odk/examples')
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java2
2 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 efec7d80ec4f..4ecd7147da15 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
+++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
@@ -192,7 +192,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
aSaveRequest.Name = "SaveArguments";
aSaveRequest.Value = lJobConfig;
- // Deactivation is usefull inside EXECUTOR environment only
+ // Deactivation is useful inside EXECUTOR environment only
if (sEnvType.equals("EXECUTOR"))
{
++c;
@@ -201,7 +201,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
aDeactivation.Value = java.lang.Boolean.TRUE;
}
- // Sending of result events is usefull inside DISPATCH environment only
+ // Sending of result events is useful inside DISPATCH environment only
if (sEnvType.equals("DISPATCH"))
{
++c;
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index 69e218a25b85..66eb053bd2c8 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -305,7 +305,7 @@ public class Interceptor implements com.sun.star.frame.XFrameActionListener,
// Don't look for ignoring actions - it was done already inside original frameAction() call!
boolean bRegister = false;
- // analyze the event and decide which reaction is usefull
+ // analyze the event and decide which reaction is useful
switch(aEvent.Action.getValue())
{
case com.sun.star.frame.FrameAction.COMPONENT_ATTACHED_value : bRegister = true ; break;