summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorGregg King <smokedart@gmail.com>2013-02-28 18:11:24 -0400
committerEike Rathke <erack@redhat.com>2013-03-02 02:45:55 +0000
commitdb7a441342f7a22d23492dbd25b113e9573db192 (patch)
treee599f39d757a43af20bc16851072c396634da07d /odk
parent9ca5383abfb7f2f785e9f2e2d5b2565b9a60bbab (diff)
Typo fix: informations -> information and a few other adjacent typos.
FDO:60724 Change-Id: I73ad9f1c37cbbcf28d996ed73c75cf09553e499b Reviewed-on: https://gerrit.libreoffice.org/2479 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java2
8 files changed, 13 insertions, 13 deletions
diff --git a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
index 4ecd7147da15..835024df64d9 100644
--- a/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
+++ b/odk/examples/DevelopersGuide/Components/Addons/JobsAddon/AsyncJob.java
@@ -279,7 +279,7 @@ public class AsyncJob extends WeakBase implements XServiceInfo, XAsyncJob
if (xInfoBox == null)
return;
- // fill it with all given informations and show it
+ // fill it with all given information and show it
xInfoBox.setCaptionText(sTitle);
xInfoBox.setMessageText(sMessage);
xInfoBox.execute();
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index 030d70e8da67..54c30ec59463 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -78,7 +78,7 @@ public class DocumentView extends JFrame
/**
* @member mxFrame office frame which contains the document of this view
*
- * @member maStatusView special panel wich show available status informations of currently loaded document
+ * @member maStatusView special panel wich show available status information of currently loaded document
* @member maDocumentView use JNI mechanism to plug an office window into our own java UI container (used for inplace mode only!)
* @member maCustomizeView special panel makes it possible to toggle menubar/toolbar or objectbar of loaded document
* @member maInterceptor interceptor thread which intercept "new" menu of office frame to open new frames inside this java application
@@ -149,7 +149,7 @@ public class DocumentView extends JFrame
paCommands.add(mbtExport);
paCommands.add(mbtExit);
- // create view to show status informations of opened file
+ // create view to show status information of opened file
maStatusView = new StatusView();
// create view for toggle different bar's of document
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index e3086a4fef7b..1546bf387097 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -699,7 +699,7 @@ public class FunctionHelper
// filter exist for HTML export. Normaly 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
- // informations too)
+ // information too)
// Well known filter names are used directly. They must exist in current
// office installation. Otherwise this code will fail. But to prevent
// this code against missing filters it check for existing state of it.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
index 1d405b9e62a3..8d36e0462af5 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
@@ -88,8 +88,8 @@ public class NativeView extends java.awt.Canvas
/**
* to guarantee right resize handling inside a swing container
- * (e.g. JSplitPane) we must provide some informations about our
- * prefered/minimum and maximum size.
+ * (e.g. JSplitPane) we must provide some information about our
+ * preferred/minimum and maximum size.
*/
public Dimension getPreferredSize()
{
@@ -140,8 +140,8 @@ public class NativeView extends java.awt.Canvas
* window messages ... But if it doesn't check for an already registered
* instance of this handler it will do it twice and produce a stack overflow
* because such method call herself in a never ending loop ...
- * So we try to use the JNI code one times only and safe already getted
- * informations inside this class.
+ * So we try to use the JNI code one time only and save already getted
+ * information inside this class.
*/
public native int getNativeWindowSystemType();
private native long getNativeWindow(); // private! => use getHWND() with cache mechanism!
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
index 58ce8a2f178d..f67423975ce2 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
@@ -95,7 +95,7 @@ class StatusListener implements com.sun.star.frame.XStatusListener,
/**
* ctor
* It initialize an instance of this class only.
- * We sett all neccessary informations on our internal member - that's it
+ * We set all neccessary information on our internal member - that's it
*/
StatusListener( /*IN*/ Component rControl ,
/*IN*/ String sTrueText ,
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 40f8c58db9bf..621972606e6a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -221,7 +221,7 @@ public class StatusView extends JPanel
// create some listener on given frame for available status events
// Created listener instances will register herself on this frame and
- // show her received informations automaticly on setted UI controls.
+ // show her received information automatically on setted UI controls.
m_aFontListener = new StatusListener(m_laFontValue ,FONT_ON ,FONT_OFF ,xFrame, FEATUREURL_FONT );
m_aSizeListener = new StatusListener(m_laSizeValue ,SIZE_ON ,SIZE_OFF ,xFrame, FEATUREURL_SIZE );
m_aBoldListener = new StatusListener(m_laBoldValue ,BOLD_ON ,BOLD_OFF ,xFrame, FEATUREURL_BOLD );
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index 08a84c63a2bd..6d6db31ebe58 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -403,7 +403,7 @@ public class AsciiReplaceFilter
* the target text model to put the data in
*
* @param aOptions
- * capsulate all other neccessary informations for this filter request
+ * capsulate all other neccessary information for this filter request
* (streams, replace values ...)
*
* @return a bool value which describes if method was successfully or not.
@@ -535,7 +535,7 @@ public class AsciiReplaceFilter
* the source text model to get the data from
*
* @param aOptions
- * capsulate all other neccessary informations for this filter request
+ * capsulate all other neccessary information for this filter request
* (streams, replace values ...)
*
* @return a bool value which describes if method was successfully or not.
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index 3afd0e0bbfbd..57f352362918 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -44,7 +44,7 @@ import com.sun.star.uno.UnoRuntime;
@description Our filter needs some neccessary properties for working:
- a stream for input or output
- or an URL for creating such streams
- - informations about required action on filtering
+ - information about required action on filtering
@attention This class mustn't be threadsafe - because instances of it
are used temp. only - not as members. So no concurrent access