From 0c0e3e7539f683548e93616a30af8ac90c9abad0 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 30 Oct 2014 12:04:11 +0100 Subject: Fixed typos. No automatic tools (sed, and so on). Change-Id: Ia43976d84eede6f699381bc4f3daf89b95e4cb4f Reviewed-on: https://gerrit.libreoffice.org/12150 Reviewed-by: Bryan Quigley Reviewed-by: Michael Stahl Tested-by: Michael Stahl --- dbaccess/source/ui/app/AppControllerDnD.cxx | 2 +- dbaccess/source/ui/dlg/tablespage.cxx | 4 ++-- dbaccess/source/ui/misc/UITools.cxx | 2 +- dbaccess/source/ui/querydesign/QueryTableView.cxx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'dbaccess/source') diff --git a/dbaccess/source/ui/app/AppControllerDnD.cxx b/dbaccess/source/ui/app/AppControllerDnD.cxx index 5957ac8fea93..b32f45b6490f 100644 --- a/dbaccess/source/ui/app/AppControllerDnD.cxx +++ b/dbaccess/source/ui/app/AppControllerDnD.cxx @@ -329,7 +329,7 @@ const SharedConnection& OApplicationController::ensureConnection( ::dbtools::SQL // because every access (read *or* write) to m_xDataSourceConnection // is mutexed. // See http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html - // for what I'm refering to. + // for what I'm referring to. // We cannot use the TLS (thread-local storage) solution // since support for TLS is not up to the snuff on Windows :-( diff --git a/dbaccess/source/ui/dlg/tablespage.cxx b/dbaccess/source/ui/dlg/tablespage.cxx index 4e035515e663..35e1ee977db2 100644 --- a/dbaccess/source/ui/dlg/tablespage.cxx +++ b/dbaccess/source/ui/dlg/tablespage.cxx @@ -179,7 +179,7 @@ namespace dbaui // the catalog entry SvTreeListEntry* pCatalog = m_pTablesList->GetEntryPosByName(sCatalog, pRootEntry); if (!(pCatalog || sCatalog.isEmpty())) - // the table (resp. its catalog) refered in this filter entry does not exist anymore + // the table (resp. its catalog) referred in this filter entry does not exist anymore continue; if (bAllSchemas && pCatalog) @@ -191,7 +191,7 @@ namespace dbaui // the schema entry SvTreeListEntry* pSchema = m_pTablesList->GetEntryPosByName(sSchema, (pCatalog ? pCatalog : pRootEntry)); if (!(pSchema || sSchema.isEmpty())) - // the table (resp. its schema) refered in this filter entry does not exist anymore + // the table (resp. its schema) referred in this filter entry does not exist anymore continue; if (bAllTables && pSchema) diff --git a/dbaccess/source/ui/misc/UITools.cxx b/dbaccess/source/ui/misc/UITools.cxx index 83f6ac0298ac..392dd7a6b4f4 100644 --- a/dbaccess/source/ui/misc/UITools.cxx +++ b/dbaccess/source/ui/misc/UITools.cxx @@ -1189,7 +1189,7 @@ TOTypeInfoSP queryPrimaryKeyType(const OTypeInfoMap& _rTypeInfo) // such auto increment column later on // so until we know how to do it, we create a column without autoincrement // if ( !aIter->second->bAutoIncrement ) - { // therefor we have searched + { // therefore we have searched if ( aIter->second->nType == DataType::INTEGER ) { pTypeInfo = aIter->second; // alternative diff --git a/dbaccess/source/ui/querydesign/QueryTableView.cxx b/dbaccess/source/ui/querydesign/QueryTableView.cxx index a12731cb4786..e3e92e2c3637 100644 --- a/dbaccess/source/ui/querydesign/QueryTableView.cxx +++ b/dbaccess/source/ui/querydesign/QueryTableView.cxx @@ -209,7 +209,7 @@ namespace // now add the Conn itself OQueryTableConnection aNewConn(_pView, aNewConnData); - // refering to the local variable is not important, as NotifyQueryTabConn creates a new copy + // referring to the local variable is not important, as NotifyQueryTabConn creates a new copy // to add me (if not existent) _pView->NotifyTabConnection(aNewConn, false); // don't create an Undo-Action for the new connection : the connection is -- cgit