diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2015-06-22 14:31:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-06-22 12:36:21 +0000 |
commit | aade27554d427649810f5635133519cadfa8002f (patch) | |
tree | 7f87acd42d9b3821f969444cc0a65e8f27988503 /dbaccess | |
parent | eb0c9b43e7f09054a864eb44c24c43b27c0f21f5 (diff) |
Fix typos
Change-Id: I60ed5eb658d50cbc7dc572facb5463b7527b4d9b
Reviewed-on: https://gerrit.libreoffice.org/16408
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/qa/complex/dbaccess/DatabaseDocument.java | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/browser/unodatbr.cxx | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/control/FieldDescControl.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/qa/complex/dbaccess/DatabaseDocument.java b/dbaccess/qa/complex/dbaccess/DatabaseDocument.java index 582bc3d1b9db..5d763a6a1346 100644 --- a/dbaccess/qa/complex/dbaccess/DatabaseDocument.java +++ b/dbaccess/qa/complex/dbaccess/DatabaseDocument.java @@ -584,7 +584,7 @@ public class DatabaseDocument extends TestCase implements com.sun.star.document. // The basic library should have survived final XEmbeddedScripts embeddedScripts = UnoRuntime.queryInterface(XEmbeddedScripts.class, databaseDoc); final XStorageBasedLibraryContainer basicLibs = embeddedScripts.getBasicLibraries(); - assertTrue( "Baisc lib did not survive reloading a closed document", basicLibs.hasByName( "Lib" ) ); + assertTrue( "Basic lib did not survive reloading a closed document", basicLibs.hasByName( "Lib" ) ); final XNameContainer lib = UnoRuntime.queryInterface(XNameContainer.class, basicLibs.getByName("Lib")); assertTrue( "Basic module did not survive reloading a closed document", lib.hasByName( "Module" ) ); diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx index be132ddb1744..9d34932ec1f8 100644 --- a/dbaccess/source/ui/browser/unodatbr.cxx +++ b/dbaccess/source/ui/browser/unodatbr.cxx @@ -484,7 +484,7 @@ void SbaTableQueryBrowser::impl_sanitizeRowSetClauses_nothrow() // there's no API at all to retrieve the information about "<other_table>" - which is what would // be needed here. // That'd be a chance to replace getStructuredFilter with something more reasonable. This method - // has at least one other problem: For a clause like "<column> != <value>", it will return "<column>" + // has at least one other problem: for a clause like "<column> != <value>", it will return "<column>" // as column name, "NOT_EQUAL" as operator, and "!= <value>" as value, effectively duplicating the // information about the operator, and beding all clients to manually remove the "!=" from the value // string. diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index d89e81afba57..290c01629563 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx @@ -633,7 +633,7 @@ IMPL_LINK( OFieldDescControl, ChangeHdl, ListBox *, pListBox ) if ( pListBox->IsValueChangedFromSaved() ) SetModified(true); - // Special treatment for Boold fields + // Special treatment for Bool fields if(pListBox == pRequired && pBoolDefault ) { // If pRequired = sal_True then the sal_Bool field must NOT contain <<none>> |