From db7a441342f7a22d23492dbd25b113e9573db192 Mon Sep 17 00:00:00 2001 From: Gregg King Date: Thu, 28 Feb 2013 18:11:24 -0400 Subject: 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 Tested-by: Eike Rathke --- embeddedobj/test/Container1/NativeView.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'embeddedobj') 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! -- cgit