summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/TableDeco.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-08-31 16:55:29 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-09-15 08:15:03 +0200
commit0e27b1f364d9b36cb5f8431d9df36b5953237424 (patch)
tree67b823214ed3605a4295984f91dc9f6728c1d9d9 /dbaccess/source/core/api/TableDeco.cxx
parentf6b5f5a1726d7ee0dd2f147407c66bd3ca487a8b (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: Ibb705ac92365b7f71e8e5561bd150142a65a50ad Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101807 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
Diffstat (limited to 'dbaccess/source/core/api/TableDeco.cxx')
-rw-r--r--dbaccess/source/core/api/TableDeco.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/TableDeco.cxx b/dbaccess/source/core/api/TableDeco.cxx
index b8a8da27371e..702723676c97 100644
--- a/dbaccess/source/core/api/TableDeco.cxx
+++ b/dbaccess/source/core/api/TableDeco.cxx
@@ -571,11 +571,11 @@ OColumn* ODBTableDecorator::createColumn(const OUString& _rName) const
{
Reference<XPropertySet> xProp(xNames->getByName(_rName),UNO_QUERY);
- Reference<XPropertySet> xColumnDefintion;
+ Reference<XPropertySet> xColumnDefinition;
if ( m_xColumnDefinitions.is() && m_xColumnDefinitions->hasByName(_rName))
- xColumnDefintion.set(m_xColumnDefinitions->getByName(_rName),UNO_QUERY);
+ xColumnDefinition.set(m_xColumnDefinitions->getByName(_rName),UNO_QUERY);
- pReturn = new OTableColumnWrapper( xProp, xColumnDefintion, false );
+ pReturn = new OTableColumnWrapper( xProp, xColumnDefinition, false );
}
}
return pReturn;