Fix typos

Change-Id: I907e5dbcd7c62344c2c76fe2fdaf1b18ecfecee1
Reviewed-on: https://gerrit.libreoffice.org/54838
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
This commit is contained in:
Andrea Gelmini 2018-05-26 13:32:13 +02:00 committed by Adolfo Jayme Barrientos
parent 91cd384e8f
commit 6e36ec6706
11 changed files with 12 additions and 12 deletions

View File

@ -25,7 +25,7 @@ Catalog::Catalog(const uno::Reference< XConnection >& rConnection):
//----- OCatalog ------------------------------------------------------------- //----- OCatalog -------------------------------------------------------------
void Catalog::refreshTables() void Catalog::refreshTables()
{ {
// TODO: set type -- currenty we also get system tables... // TODO: set type -- currently we also get system tables...
Sequence< OUString > aTypes(2); Sequence< OUString > aTypes(2);
aTypes[0] = "TABLE"; aTypes[0] = "TABLE";
aTypes[1] = "VIEW"; aTypes[1] = "VIEW";

View File

@ -847,7 +847,7 @@ public class ConfigExamples
ATTENTION: This example requires an older version of the ATTENTION: This example requires an older version of the
org.openoffice.Office.DataAccess schema. org.openoffice.Office.DataAccess schema.
It does not work with the current schema. It does not work with the current schema.
Because of this, the method currenty does nothing. Because of this, the method currently does nothing.
You can still use the techniques shown in the example code. You can still use the techniques shown in the example code.
*/ */
void storeSampleDataSource() void storeSampleDataSource()

View File

@ -27,7 +27,7 @@ module com { module sun { module star { module configuration { module backend {
/** /**
implements SingleLayerStratum that implements SingleLayerStratum that
provides access to a singe layer of configuration data from local file system provides access to a single layer of configuration data from local file system
*/ */
service LocalSingleStratum service LocalSingleStratum
{ {

View File

@ -28,7 +28,7 @@ module com { module sun { module star { module configuration { module backend {
/** /**
Provides access to a singe layer of configuration data Provides access to a single layer of configuration data
*/ */
service MultiLayerStratum service MultiLayerStratum
{ {

View File

@ -27,7 +27,7 @@ module com { module sun { module star { module configuration { module backend {
/** /**
implements SingleLayerStratum that implements SingleLayerStratum that
provides access to a singe layer of configuration data from external data store provides access to a single layer of configuration data from external data store
*/ */
service PlatformBackend service PlatformBackend
{ {

View File

@ -28,7 +28,7 @@
module com { module sun { module star { module table { module com { module sun { module star { module table {
/** represents a singe cell within a table. /** represents a single cell within a table.
*/ */
published service Cell published service Cell
{ {

View File

@ -29,7 +29,7 @@
module com { module sun { module star { module text { module com { module sun { module star { module text {
/** represents a singe cell within a text table. /** represents a single cell within a text table.
@see com::sun::star::text::TextTable @see com::sun::star::text::TextTable
*/ */

View File

@ -136,7 +136,7 @@ public class _XTreeNode extends MultiMethodTest {
log.println("ERROR: getChildAt(0): " + ex.toString()); log.println("ERROR: getChildAt(0): " + ex.toString());
} }
log.println("try to get parrent of children"); log.println("try to get parent of children");
if (xNode == null) { if (xNode == null) {
log.println("missing xNode"); log.println("missing xNode");
tRes.tested("getParent()", false); tRes.tested("getParent()", false);
@ -146,7 +146,7 @@ public class _XTreeNode extends MultiMethodTest {
bOK = oObj.equals(xParrent); bOK = oObj.equals(xParrent);
log.println("original object and parrent should be the same: " + bOK); log.println("original object and parent should be the same: " + bOK);
tRes.tested("getParent()", bOK); tRes.tested("getParent()", bOK);
} }
} }

View File

@ -115,7 +115,7 @@ bool HasOnlySpaces(const std::wstring& String)
/** helper function to convert windows paths to short form. /** helper function to convert windows paths to short form.
@returns @returns
shortend path. shortened path.
*/ */
std::wstring getShortPathName( const std::wstring& aLongName ) std::wstring getShortPathName( const std::wstring& aLongName )

View File

@ -50,7 +50,7 @@
* | '&' | '|' * | '&' | '|'
* | '&&' | '||' * | '&&' | '||'
* *
* The normal C order of precidence is supported. * The normal C order of precedence is supported.
* *
* *
* External Entry Points: * External Entry Points:

View File

@ -227,7 +227,7 @@ static XMLTransformerActionInit aActionTable[] =
// process <test:list>'s text:style-name attributes // process <test:list>'s text:style-name attributes
// rename <text:list> to <text:ordered-list> or <text:unordered-list> // rename <text:list> to <text:ordered-list> or <text:unordered-list>
// TODO: All list currenty are renamed to <text:ordered-list> // TODO: All list currently are renamed to <text:ordered-list>
ENTRY2QN( TEXT, LIST, XML_ETACTION_RENAME_ELEM_PROC_ATTRS, ENTRY2QN( TEXT, LIST, XML_ETACTION_RENAME_ELEM_PROC_ATTRS,
XML_NAMESPACE_TEXT, XML_ORDERED_LIST, XML_NAMESPACE_TEXT, XML_ORDERED_LIST,
OASIS_LIST_STYLE_REF_ACTIONS ), OASIS_LIST_STYLE_REF_ACTIONS ),