summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-31 19:31:43 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-01 11:15:11 +0200
commit0940229305247b4e64e8c85c9734020c9808a6ec (patch)
tree3491592b0ddade1859dca48c62007bafb9cf47d6 /odk
parent9c06059ec546683bfa095cf4f59ac6ea94da34fb (diff)
Fix '..'
To complete this: https://gerrit.libreoffice.org/#/c/78312/ This is a massive replace for lines ending with ".." instead of "..." It passed "make check" on Linux. Change-Id: I07fa7b2e30ba9ea17a1f9a5e21c57216ba958efe Reviewed-on: https://gerrit.libreoffice.org/78356 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/GUI/MessageBox.java2
-rw-r--r--odk/examples/DevelopersGuide/GUI/SystemDialog.java2
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoDialogSample.java2
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java2
-rw-r--r--odk/examples/DevelopersGuide/GUI/UnoMenu.java2
-rw-r--r--odk/examples/DevelopersGuide/Text/TextDocuments.java2
-rw-r--r--odk/examples/java/Inspector/InspectorPane.java2
7 files changed, 7 insertions, 7 deletions
diff --git a/odk/examples/DevelopersGuide/GUI/MessageBox.java b/odk/examples/DevelopersGuide/GUI/MessageBox.java
index 68469ddb6f23..cff15262d559 100644
--- a/odk/examples/DevelopersGuide/GUI/MessageBox.java
+++ b/odk/examples/DevelopersGuide/GUI/MessageBox.java
@@ -120,7 +120,7 @@ public class MessageBox {
} else {
// Note: This method is potentially dangerous and should only be used for debugging
- // purposes as it relies on the platform dependent window handler..
+ // purposes as it relies on the platform dependent window handler...
Object oDesktop = m_xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", m_xContext);
XFramesSupplier xFramesSupplier = UnoRuntime.queryInterface(XFramesSupplier.class, oDesktop);
xFrame = xFramesSupplier.getActiveFrame();
diff --git a/odk/examples/DevelopersGuide/GUI/SystemDialog.java b/odk/examples/DevelopersGuide/GUI/SystemDialog.java
index df3eed6e45b6..62c6e3e03f2d 100644
--- a/odk/examples/DevelopersGuide/GUI/SystemDialog.java
+++ b/odk/examples/DevelopersGuide/GUI/SystemDialog.java
@@ -83,7 +83,7 @@ public class SystemDialog {
Object oFilePicker = m_xMCF.createInstanceWithContext("com.sun.star.ui.dialogs.FilePicker", m_xContext);
XFilePicker xFilePicker = UnoRuntime.queryInterface(XFilePicker.class, oFilePicker);
- // the defaultname is the initially proposed filename..
+ // the defaultname is the initially proposed filename...
xFilePicker.setDefaultName("MyExampleDocument");
// set the initial displaydirectory. In this example the user template directory is used
diff --git a/odk/examples/DevelopersGuide/GUI/UnoDialogSample.java b/odk/examples/DevelopersGuide/GUI/UnoDialogSample.java
index dea9e85cea5a..c49dbfd77ff4 100644
--- a/odk/examples/DevelopersGuide/GUI/UnoDialogSample.java
+++ b/odk/examples/DevelopersGuide/GUI/UnoDialogSample.java
@@ -1323,7 +1323,7 @@ public class UnoDialogSample implements XTextListener, XSpinListener, XActionLis
new Object[] {Boolean.FALSE, Integer.valueOf(nDialogHeight - 26), sRoadmapName, Integer.valueOf(0), Integer.valueOf(0), "Steps", Integer.valueOf(85)});
m_xRMPSet = UnoRuntime.queryInterface(XPropertySet.class, oRoadmapModel);
- // add the roadmapmodel to the dialog container..
+ // add the roadmapmodel to the dialog container...
m_xDlgModelNameContainer.insertByName(sRoadmapName, oRoadmapModel);
// the roadmapmodel is a SingleServiceFactory to instantiate the roadmapitems...
diff --git a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
index 22287fc0ebac..3e38886a1e13 100644
--- a/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
+++ b/odk/examples/DevelopersGuide/GUI/UnoDialogSample2.java
@@ -88,7 +88,7 @@ public class UnoDialogSample2 extends UnoDialogSample {
System.out.println("Connected to a running office ...");
XMultiComponentFactory xMCF = xContext.getServiceManager();
PropertyValue[] aPropertyValues = new PropertyValue[]{};
- // create an arbitrary Uno-Object - in this case an empty writer document..
+ // create an arbitrary Uno-Object - in this case an empty writer document...
Object oDesktop =xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", xContext);
XComponentLoader xComponentLoader = UnoRuntime.queryInterface(XComponentLoader.class, oDesktop);
Object oUnoObject = xComponentLoader.loadComponentFromURL("private:factory/swriter", "_default", 0, aPropertyValues);
diff --git a/odk/examples/DevelopersGuide/GUI/UnoMenu.java b/odk/examples/DevelopersGuide/GUI/UnoMenu.java
index a7eceb2f8970..10d89c83786b 100644
--- a/odk/examples/DevelopersGuide/GUI/UnoMenu.java
+++ b/odk/examples/DevelopersGuide/GUI/UnoMenu.java
@@ -143,7 +143,7 @@ public UnoMenu(XComponentContext _xContext, XMultiComponentFactory _xMCF) {
Object oDesktop = m_xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", m_xContext);
XFramesSupplier xFramesSupplier = UnoRuntime.queryInterface(XFramesSupplier.class, oDesktop);
m_xFrame.setCreator(xFramesSupplier);
- // get the XTopWindow interface..
+ // get the XTopWindow interface...
xTopWindow = UnoRuntime.queryInterface(XTopWindow.class, xWindow);
} catch (com.sun.star.lang.IllegalArgumentException ex) {
ex.printStackTrace();
diff --git a/odk/examples/DevelopersGuide/Text/TextDocuments.java b/odk/examples/DevelopersGuide/Text/TextDocuments.java
index 6566d5e7fc66..20e9f7a58e72 100644
--- a/odk/examples/DevelopersGuide/Text/TextDocuments.java
+++ b/odk/examples/DevelopersGuide/Text/TextDocuments.java
@@ -1180,7 +1180,7 @@ public class TextDocuments {
// Insert the text field
mxDocText.insertTextContent(mxDocText.getEnd(), xRefContent, false);
- // And some text after the reference..
+ // And some text after the reference...
mxDocText.insertString(mxDocText.getEnd(),
" contains the sum of some random numbers.", false );
diff --git a/odk/examples/java/Inspector/InspectorPane.java b/odk/examples/java/Inspector/InspectorPane.java
index 627d4c4336b0..6483958b76b3 100644
--- a/odk/examples/java/Inspector/InspectorPane.java
+++ b/odk/examples/java/Inspector/InspectorPane.java
@@ -173,7 +173,7 @@ import com.sun.star.uno.XComponentContext;
}
}
}
- // ReturnObject of method node == null..
+ // ReturnObject of method node == null...
else{
if (!bHasParameters){
_oUnoMethodNode.setLabel(_oUnoMethodNode.getLabel() + " = null");