summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2013-05-06 20:07:23 +0200
committerPhilipp Riemer <ruderphilipp@gmail.com>2013-05-06 20:07:23 +0200
commit2ce25faffd3ac3767aa52f8d7c71591d9043e3ad (patch)
treec43eb54c32924b919ad2ad7e653d0eaa47800d39 /odk
parent928d86d8a26af86d19b1c1cbcbb512494bf366dd (diff)
fix typos (wich instead of which)
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java6
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java2
6 files changed, 9 insertions, 9 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index 70748dfb7e64..b00bebf3ee4b 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -46,7 +46,7 @@ import java.awt.event.WindowEvent;
// __________ Implementation __________
/**
- * This implement a java frame wich contains
+ * This implement a java frame which contains
* an office document, shows some status information
* about that, provides simple functionality on it
* (e.g. toggle menubar, save document) and
@@ -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 information of currently loaded document
+ * @member maStatusView special panel which shows 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
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index 9076fcb8b101..dd1c8fdea1c3 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -434,7 +434,7 @@ public class FunctionHelper
* till he deosn't need it any longer. Otherwise the dispatcher can(!)
* die by decreasing his refcount.
*
- * @param xFrame frame wich should be the target of this dispatch
+ * @param xFrame frame which should be the target of this dispatch
* @param aURL full parsed and converted office URL for dispatch
* @param lProperties optional arguments for dispatch
* @param xListener optional listener which is registered automaticly for status events
@@ -497,7 +497,7 @@ public class FunctionHelper
* Returning of the dispatch object isn't neccessary.
* Nobody must hold it alive longer the dispatch needs.
*
- * @param xFrame frame wich should be the target of this dispatch
+ * @param xFrame frame which should be the target of this dispatch
* @param aURL full parsed and converted office URL for dispatch
* @param lProperties optional arguments for dispatch
* @param xListener optional listener which is registered automaticly for status events
@@ -542,7 +542,7 @@ public class FunctionHelper
* The result of this operation will be the loaded document for success
* or null if loading failed.
*
- * @param xFrame frame wich should be the target of this load call
+ * @param xFrame frame which should be the target of this load call
* @param sURL unparsed URL for loading
* @param lProperties optional arguments
*
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index 628cc587c83d..47dec3afbbc7 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -44,7 +44,7 @@ import com.sun.star.uno.UnoRuntime;
/**
* This class can be used to intercept dispatched URL's
* on any frame used in this demo application.
- * It intercept all URL's wich try to create a new empty frame.
+ * It intercept all URL's which try to create a new empty frame.
* (e.g. "private:factory/swriter")
* Nobody can guarantee that this interception will be realy used -
* because another interceptor (registered at a later time then this one!)
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
index f7cf1d3f07b5..e8a345ce1c4b 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
@@ -86,7 +86,7 @@ public class OfficeConnect
* ctor
* We try to open the connection in our ctor ... transparently for user.
* After it was successfully you will find an internal set member
- * m_xRemoteContext wich means remote component context of the connected office.
+ * m_xRemoteContext which means remote component context of the connected office.
* The context can be used to get the remote service manager from the office.
* We made it private to support singleton pattern of these implementation.
* see getConnection() for further information
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
index e9f396e1c0a2..3b2d67ca8cf7 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
@@ -141,7 +141,7 @@ public class ViewContainer extends Thread
// hook at the runtime class. So our run() method will be called.
// Our view container should be empty - but
// our listener container can include some references.
- // These objects wich to be informed then and release e.g. some
+ // These objects will be informed then and release e.g. some
// remote references.
if (nViewCount<1)
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
index f62c2e54991a..fe6b7299545a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/AsciiReplaceFilter.java
@@ -362,7 +362,7 @@ public class AsciiReplaceFilter
/**
* Makes the filter process breakable. To do so the outside code may use threads.
- * We use a internal "condition" variable wich is queried by the real filter method on
+ * We use a internal "condition" variable which is queried by the real filter method on
* every loop they do. So it's more a polling mechanism.
*/
public void cancel()