diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-09-10 22:35:39 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-09-10 22:35:39 +0200 |
commit | 037d03b9facb414ba6be01fa6ee92fc7ca89f70c (patch) | |
tree | 119676e8107fada1b91ef12a72e9bbf7b393729f /odk/examples | |
parent | 44ead04eb5fc61a3f56f783adb1509fab440e212 (diff) |
Typo: (N|n)ormaly->(N|n)ormally
Change-Id: I96d081f394b0b62d99ec1034bf5e99da9aedd9d9
Diffstat (limited to 'odk/examples')
5 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java index fd852f3c6fab..f263f0ec00dd 100644 --- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java +++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java @@ -92,7 +92,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob com.sun.star.task.XJobListener xListener) throws com.sun.star.lang.IllegalArgumentException { - // For asynchronous jobs a valid listener reference is guaranteed normaly ... + // For asynchronous jobs a valid listener reference is guaranteed normally ... if (xListener == null) throw new com.sun.star.lang.IllegalArgumentException("invalid listener"); diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java index e8d5221dc74e..407cfa4f0052 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java @@ -319,7 +319,7 @@ public class DocumentView extends JFrame /** - * Here we can react for System.exit() normaly. + * Here we can react for System.exit() normally. * But we use it for disposing() or windowClosing() too. */ public void shutdown() @@ -348,7 +348,7 @@ public class DocumentView extends JFrame FunctionHelper.closeFrame(mxFrame); // deregister this view in the global container - // Normaly we should die afterwards by garbage collection ... + // Normally we should die afterwards by garbage collection ... // In cease this was the last view - it force a system.exit(). // But then we are no longer a member of the global container // of possible shutdown listener ... and this method should be diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java index 49de6144f4d5..2640100f8edf 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java @@ -250,7 +250,7 @@ public class FunctionHelper // try new version of creation first: directly using of the window // handle. The old implementation of the corresponding toolkit method // requires a process ID. If this id isn't the right one a null object - // is returned. But normaly nobody outside the office knows this id. + // is returned. But normally nobody outside the office knows this id. // New version of this method ignore the id parameter and creation will // work. // Note: You must be sure if your window handle can be really used by @@ -596,7 +596,7 @@ public class FunctionHelper try { // Check for supported model functionality. - // Normaly the application documents (text, spreadsheet ...) do so + // Normally the application documents (text, spreadsheet ...) do so // but some other ones (e.g. db components) doesn't do that. // They can't be save then. com.sun.star.frame.XModel xModel = UnoRuntime.queryInterface( @@ -653,7 +653,7 @@ public class FunctionHelper // First detect factory of this document. // Ask for the supported service name of this document. // If information is available it can be used to find out which - // filter exist for HTML export. Normaly this filter should be searched + // filter exist for HTML export. Normally this filter should be searched // inside the filter configuration but this little demo doesn't do so. // (see service com.sun.star.document.FilterFactory for further // information too) diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java index 13fad3c02d21..5dd46da0e68e 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java +++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java @@ -101,7 +101,7 @@ public class ViewContainer extends Thread /** * This deregister a view from this global container. - * Normaly it should be the last reference to the view + * Normally it should be the last reference to the view * and her finalize() method should be called. * If last view will be closed here - we terminate these * java application too. Because there is no further diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java index c4816fa3a9d9..04e9b771c391 100644 --- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java +++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java @@ -559,7 +559,7 @@ public class AsciiReplaceFilter measure("get text from model"); - // Normaly this function isn't really cancelable + // Normally this function isn't really cancelable // But we following operation can be very expensive. So // this place is the last one to stop it. synchronized(this) |