From aade27554d427649810f5635133519cadfa8002f Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 22 Jun 2015 14:31:42 +0200 Subject: Fix typos Change-Id: I60ed5eb658d50cbc7dc572facb5463b7527b4d9b Reviewed-on: https://gerrit.libreoffice.org/16408 Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- dbaccess/qa/complex/dbaccess/DatabaseDocument.java | 2 +- dbaccess/source/ui/browser/unodatbr.cxx | 2 +- dbaccess/source/ui/control/FieldDescControl.cxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'dbaccess') 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 "" - 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 " != ", it will return "" + // has at least one other problem: for a clause like " != ", it will return "" // as column name, "NOT_EQUAL" as operator, and "!= " 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 <> -- cgit