Fix typos

Change-Id: I3a877a8eb0babb9d04ac9750494576869481c8db
Reviewed-on: https://gerrit.libreoffice.org/76763
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini
2019-07-31 18:39:34 +02:00
committed by Julien Nabet
parent e1bc254df0
commit b9b7df5f55
3 changed files with 3 additions and 3 deletions

View File

@@ -309,7 +309,7 @@ template <> DateTime OPreparedResultSet::retrieveValue(sal_Int32 column)
template <> OUString OPreparedResultSet::retrieveValue(sal_Int32 column) template <> OUString OPreparedResultSet::retrieveValue(sal_Int32 column)
{ {
// redirect call to the appropiate method if needed // redirect call to the appropriate method if needed
// BLOB can be simply read out as string // BLOB can be simply read out as string
if (getTypeFromMysqlType(m_aFields[column - 1].type) != std::type_index(typeid(OUString)) if (getTypeFromMysqlType(m_aFields[column - 1].type) != std::type_index(typeid(OUString))
&& m_aFields[column - 1].type != MYSQL_TYPE_BLOB) && m_aFields[column - 1].type != MYSQL_TYPE_BLOB)

View File

@@ -4,7 +4,7 @@ Desperate splitting of code into small shared libraries for historical
reasons presumably (OS/2 and Windows 3.x). The libraries produced from reasons presumably (OS/2 and Windows 3.x). The libraries produced from
the code in each subdirectory of filter/source/graphicfilter are the code in each subdirectory of filter/source/graphicfilter are
graphic format import or export filters. But they don't have uniform graphic format import or export filters. But they don't have uniform
API. Some have either an GraphicImport or GraphicExport entry point, API. Some have either a GraphicImport or GraphicExport entry point,
and are loaded and used in a uniform fashion from code in and are loaded and used in a uniform fashion from code in
svtools/source/filter/filter.cxx. Others have different API and are svtools/source/filter/filter.cxx. Others have different API and are
loaded from other places. For instance "icgm" has ImportCGM, and is loaded from other places. For instance "icgm" has ImportCGM, and is

View File

@@ -388,7 +388,7 @@ interface XBridgeTestBase : com::sun::star::uno::XInterface
/** /**
* Inherting from monster; adds raiseException(), attribute raising RuntimeException. * Inheriting from monster; adds raiseException(), attribute raising RuntimeException.
*/ */
interface XBridgeTest : XBridgeTestBase interface XBridgeTest : XBridgeTestBase
{ {