summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:47:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:05:50 +0200
commit73e3604fc16695758b9a7f55051d2f786f74be2d (patch)
tree357784a45ad575a8de6d6d9450fb18190091c873 /odk
parent396473a3d6ddd1f1ee2d4e0fd3bae5c41d2cc3fd (diff)
Fixing '....' and '..'
Change-Id: I926069d6c1f2712e5020d930f7ff6c62fd00e912 Reviewed-on: https://gerrit.libreoffice.org/78667 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Forms/ControlLock.java2
-rw-r--r--odk/examples/DevelopersGuide/Forms/DataAwareness.java2
-rw-r--r--odk/examples/DevelopersGuide/Forms/SalesFilter.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java2
-rw-r--r--odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java2
-rw-r--r--odk/examples/cpp/remoteclient/remoteclient.cxx2
6 files changed, 6 insertions, 6 deletions
diff --git a/odk/examples/DevelopersGuide/Forms/ControlLock.java b/odk/examples/DevelopersGuide/Forms/ControlLock.java
index 51358a7f02ba..6895f73f9289 100644
--- a/odk/examples/DevelopersGuide/Forms/ControlLock.java
+++ b/odk/examples/DevelopersGuide/Forms/ControlLock.java
@@ -90,7 +90,7 @@ class LockControlModels extends ComponentTreeTraversal
xPSI = xCompProps.getPropertySetInfo();
if ( ( null != xPSI ) && xPSI.hasPropertyByName( "DataField" ) )
- { // indeed it has ....
+ { // indeed it has...
String sDataField = (String)xCompProps.getPropertyValue( "DataField" );
if ( sDataField.equals( m_sDataField ) )
{ // we found a control model which is bound to what we're looking for
diff --git a/odk/examples/DevelopersGuide/Forms/DataAwareness.java b/odk/examples/DevelopersGuide/Forms/DataAwareness.java
index 123360c4e942..fbb3b7fe5e8e 100644
--- a/odk/examples/DevelopersGuide/Forms/DataAwareness.java
+++ b/odk/examples/DevelopersGuide/Forms/DataAwareness.java
@@ -384,7 +384,7 @@ public class DataAwareness extends DocumentBasedExample implements XPropertyChan
<p>The check is made using a SELECT statement, so even if the connection
is a n SDB-level connection, which may filter tables in its table
- supplier, the result may be reliable ....</p>
+ supplier, the result may be reliable...</p>
*/
protected boolean existsInvisibleTable( XConnection xConn, String sTableName ) throws java.lang.Exception
{
diff --git a/odk/examples/DevelopersGuide/Forms/SalesFilter.java b/odk/examples/DevelopersGuide/Forms/SalesFilter.java
index 519e3e80ce65..753135bd3532 100644
--- a/odk/examples/DevelopersGuide/Forms/SalesFilter.java
+++ b/odk/examples/DevelopersGuide/Forms/SalesFilter.java
@@ -362,7 +362,7 @@ class SalesFilter implements XActionListener, XPropertyChangeListener, XResetLis
// the current string items
String[] aOldFilterItems = (String[])m_xFilterList.getPropertyValue( "StringItemList" );
- // translate this into a vector - much more comfort to work with a vector than with an array ....
+ // translate this into a vector - much more comfort to work with a vector than with an array...
java.util.ArrayList aFilterItems = new java.util.ArrayList();
for ( int i=0; i<aOldFilterItems.length; ++i )
aFilterItems.add( aOldFilterItems[i] );
diff --git a/odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java b/odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java
index e5e79d1f7098..f87eb36786ea 100644
--- a/odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java
+++ b/odk/examples/DevelopersGuide/OfficeBean/OOoBeanViewer.java
@@ -47,7 +47,7 @@ import java.io.*;
* When initially loaded the applet has two buttons
* one for opening an existent file and one to open
* a blank document of a given type supported by
- * OpenOffice.org eg. Writer, Calc, Impress, .....
+ * OpenOffice.org eg. Writer, Calc, Impress, ...
*
*/
diff --git a/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java b/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java
index 7e6242a0c29b..5644af0c2f0c 100644
--- a/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java
+++ b/odk/examples/DevelopersGuide/UCB/DataStreamRetriever.java
@@ -74,7 +74,7 @@ public class DataStreamRetriever {
/**
* Read the document data stream of a document content using a
- * XActiveDataSink implementation as data sink....
+ * XActiveDataSink implementation as data sink...
*
*@return XInputStream Returns input stream if stream successfully retrieved,
* null otherwise
diff --git a/odk/examples/cpp/remoteclient/remoteclient.cxx b/odk/examples/cpp/remoteclient/remoteclient.cxx
index 7af63f15948b..e754a2fa42e3 100644
--- a/odk/examples/cpp/remoteclient/remoteclient.cxx
+++ b/odk/examples/cpp/remoteclient/remoteclient.cxx
@@ -142,7 +142,7 @@ void PipeClientMain::testPipe( const Reference< XInterface > & rxInterface )
sal_Int32 PipeClientMain::run( const Sequence< OUString > & aArguments ) throw ( RuntimeException )
{
- printf( "Connecting ....\n" );
+ printf( "Connecting...\n" );
if( aArguments.getLength() == 1 )
{