summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-18 14:58:32 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-08-18 20:05:00 +0200
commitd44a5250a4996bcfb2c66b8510f8a01a5888dd9f (patch)
tree099a33c33719b3d4962edd04f1838f0c8e99a583 /dbaccess
parent12bb15fce78dc27fe046cecf6984c4f45b364e51 (diff)
Fix typos
Change-Id: I9d55e4478d8cf3047b4ccac88e06fdc87e68e6ca Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100871 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx4
-rw-r--r--dbaccess/source/ui/browser/unodatbr.cxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index a53ade551795..4c12a3ae7b51 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -872,7 +872,7 @@ sal_Bool SAL_CALL OGenericUnoController::supportsService(const OUString& Service
void OGenericUnoController::startConnectionListening(const Reference< XConnection >& _rxConnection)
{
- // we have to remove ourself before dispoing the connection
+ // we have to remove ourself before disposing the connection
Reference< XComponent > xComponent(_rxConnection, UNO_QUERY);
if (xComponent.is())
xComponent->addEventListener(static_cast<XFrameActionListener*>(this));
@@ -880,7 +880,7 @@ void OGenericUnoController::startConnectionListening(const Reference< XConnectio
void OGenericUnoController::stopConnectionListening(const Reference< XConnection >& _rxConnection)
{
- // we have to remove ourself before dispoing the connection
+ // we have to remove ourself before disposing the connection
Reference< XComponent > xComponent(_rxConnection, UNO_QUERY);
if (xComponent.is())
xComponent->removeEventListener(static_cast<XFrameActionListener*>(this));
diff --git a/dbaccess/source/ui/browser/unodatbr.cxx b/dbaccess/source/ui/browser/unodatbr.cxx
index 2d448bbcf1a0..46ea151072a4 100644
--- a/dbaccess/source/ui/browser/unodatbr.cxx
+++ b/dbaccess/source/ui/browser/unodatbr.cxx
@@ -240,7 +240,7 @@ void SAL_CALL SbaTableQueryBrowser::disposing()
if (getBrowserView())
{
- // Need to do some cleaup of the data pointed to the tree view entries before we remove the treeview
+ // Need to do some cleanup of the data pointed to the tree view entries before we remove the treeview
clearTreeModel();
m_pTreeView = nullptr;
getBrowserView()->setTreeView(nullptr);
@@ -3389,7 +3389,7 @@ int SbaTableQueryBrowser::OnTreeEntryCompare(const weld::TreeIter& rLHS, const w
// we want the table entry and the end so we have to do a check
if (isContainer(rRHS))
{
- // don't use getEntryType (directly or indirecly) for the LHS:
+ // don't use getEntryType (directly or indirectly) for the LHS:
// LHS is currently being inserted, so it is not "completely valid" at the moment
const EntryType eRight = getEntryType(rRHS);