diff options
author | Gregg King <smokedart@gmail.com> | 2013-02-28 18:11:24 -0400 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-03-02 02:45:55 +0000 |
commit | db7a441342f7a22d23492dbd25b113e9573db192 (patch) | |
tree | e599f39d757a43af20bc16851072c396634da07d /embeddedobj | |
parent | 9ca5383abfb7f2f785e9f2e2d5b2565b9a60bbab (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 'embeddedobj')
-rw-r--r-- | embeddedobj/test/Container1/NativeView.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/embeddedobj/test/Container1/NativeView.java b/embeddedobj/test/Container1/NativeView.java index cd3e0f858d91..fc4371d5ef6e 100644 --- a/embeddedobj/test/Container1/NativeView.java +++ b/embeddedobj/test/Container1/NativeView.java @@ -58,7 +58,7 @@ public class NativeView extends java.awt.Canvas /** * Overload this method to make neccessary initializations here. - * ( e.g. get the window handle and neccessary system informations ) + * ( e.g. get the window handle and neccessary system information ) * * Why here? * Because the handle seams to be available for already visible windows @@ -75,7 +75,7 @@ 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 + * ( e.g. JSplitPane ) we must provide some information about our * prefered/minimum and maximum size. */ public Dimension getPreferredSize() @@ -128,7 +128,7 @@ public class NativeView extends java.awt.Canvas * 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. + * information inside this class. */ public native int getNativeWindowSystemType(); private native long getNativeWindow(); // private! => use getHWND() with cache mechanism! |