summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 09:17:37 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 10:11:33 +0200
commit146033f5da8ee588c9a4dda93aba64477e174541 (patch)
tree99fc84a0f5ee143c5c2da55633dc6d3e39af897c /odk
parent17a2c9e8e2361de27013a25e51f3a3ca729f1b31 (diff)
spelling instanciate -> instantiate
Change-Id: Ic1393da64328c0dc7e2860334b204139bf537d81 Reviewed-on: https://gerrit.libreoffice.org/38401 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java4
-rw-r--r--odk/examples/java/ConverterServlet/ConverterServlet.java2
-rw-r--r--odk/examples/java/Inspector/TestInspector.java2
-rw-r--r--odk/examples/java/NotesAccess/NotesAccess.java2
-rw-r--r--odk/examples/java/Spreadsheet/ChartTypeChange.java4
-rw-r--r--odk/examples/java/Text/GraphicsInserter.java2
6 files changed, 8 insertions, 8 deletions
diff --git a/odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java b/odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java
index 79e15ef7a620..7dcf1d71d3d5 100644
--- a/odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java
+++ b/odk/examples/DevelopersGuide/Drawing/CustomShowDemo.java
@@ -134,7 +134,7 @@ public class CustomShowDemo
Object xObj;
XIndexContainer xContainer;
- /* instanciate an IndexContainer that will take
+ /* instantiate an IndexContainer that will take
a list of draw pages for the first custom show */
xObj = xFactory.createInstance();
xContainer = UnoRuntime.queryInterface( XIndexContainer.class, xObj );
@@ -142,7 +142,7 @@ public class CustomShowDemo
xContainer.insertByIndex( xContainer.getCount(), xDrawPages.getByIndex( i ) );
xNameContainer.insertByName( "ShortVersion", xContainer );
- /* instanciate an IndexContainer that will take
+ /* instantiate an IndexContainer that will take
a list of draw page for the second custom show */
xObj = xFactory.createInstance();
xContainer = UnoRuntime.queryInterface( XIndexContainer.class, xObj );
diff --git a/odk/examples/java/ConverterServlet/ConverterServlet.java b/odk/examples/java/ConverterServlet/ConverterServlet.java
index 255d64f70ceb..809d0905e888 100644
--- a/odk/examples/java/ConverterServlet/ConverterServlet.java
+++ b/odk/examples/java/ConverterServlet/ConverterServlet.java
@@ -254,7 +254,7 @@ public class ConverterServlet extends HttpServlet {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
XComponentLoader xcomponentloader = UnoRuntime.queryInterface( XComponentLoader.class,
xmulticomponentfactory.createInstanceWithContext(
diff --git a/odk/examples/java/Inspector/TestInspector.java b/odk/examples/java/Inspector/TestInspector.java
index da19fffd505e..208acf25b3b4 100644
--- a/odk/examples/java/Inspector/TestInspector.java
+++ b/odk/examples/java/Inspector/TestInspector.java
@@ -67,7 +67,7 @@ public class TestInspector {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
com.sun.star.frame.XComponentLoader xCmpLoader = UnoRuntime.queryInterface( com.sun.star.frame.XComponentLoader.class,
xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", xContext));
diff --git a/odk/examples/java/NotesAccess/NotesAccess.java b/odk/examples/java/NotesAccess/NotesAccess.java
index 920a4172e4ec..0d0a0bb5ee60 100644
--- a/odk/examples/java/NotesAccess/NotesAccess.java
+++ b/odk/examples/java/NotesAccess/NotesAccess.java
@@ -141,7 +141,7 @@ public class NotesAccess implements Runnable {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
XComponentLoader xLoader = UnoRuntime.queryInterface(XComponentLoader.class,
xMCF.createInstanceWithContext(
diff --git a/odk/examples/java/Spreadsheet/ChartTypeChange.java b/odk/examples/java/Spreadsheet/ChartTypeChange.java
index a2830da9b653..eb6099ad224f 100644
--- a/odk/examples/java/Spreadsheet/ChartTypeChange.java
+++ b/odk/examples/java/Spreadsheet/ChartTypeChange.java
@@ -177,7 +177,7 @@ public class ChartTypeChange {
try {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
XComponentLoader xComponentloader = UnoRuntime.queryInterface( XComponentLoader.class,
xMCF.createInstanceWithContext("com.sun.star.frame.Desktop",
@@ -219,7 +219,7 @@ public class ChartTypeChange {
try {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
XComponentLoader xcomponentloader = UnoRuntime.queryInterface( XComponentLoader.class,
xMCF.createInstanceWithContext(
diff --git a/odk/examples/java/Text/GraphicsInserter.java b/odk/examples/java/Text/GraphicsInserter.java
index bc31df0eb3bd..c49d118b69d6 100644
--- a/odk/examples/java/Text/GraphicsInserter.java
+++ b/odk/examples/java/Text/GraphicsInserter.java
@@ -67,7 +67,7 @@ public class GraphicsInserter {
/* A desktop environment contains tasks with one or more
frames in which components can be loaded. Desktop is the
- environment for components which can instanciate within
+ environment for components which can instantiate within
frames. */
com.sun.star.frame.XDesktop xDesktop = UnoRuntime.queryInterface(com.sun.star.frame.XDesktop.class,
xMCF.createInstanceWithContext("com.sun.star.frame.Desktop",