summaryrefslogtreecommitdiffstats
path: root/connectivity/source/drivers/firebird
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2016-01-09 22:55:28 +0100
committerAshod Nakashian <ashnakash@gmail.com>2016-01-10 14:17:20 +0000
commit64d624b65124ac02d8ee59b135593fd9d8eb9067 (patch)
tree772fc0f308549b9416fbcb06bce2bf0e0f5809cc /connectivity/source/drivers/firebird
parenttdf#95505 Dump usage stats to text file (diff)
downloadcore-64d624b65124ac02d8ee59b135593fd9d8eb9067.tar.gz
core-64d624b65124ac02d8ee59b135593fd9d8eb9067.zip
Fix typos
Change-Id: I9a5940027423ff0791fa7da0b79b617412ce6b86 Reviewed-on: https://gerrit.libreoffice.org/21209 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Diffstat (limited to 'connectivity/source/drivers/firebird')
-rw-r--r--connectivity/source/drivers/firebird/Blob.hxx4
-rw-r--r--connectivity/source/drivers/firebird/DatabaseMetaData.cxx2
-rw-r--r--connectivity/source/drivers/firebird/ResultSetMetaData.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/firebird/Blob.hxx b/connectivity/source/drivers/firebird/Blob.hxx
index 5a1982a9be6f..40617462f94b 100644
--- a/connectivity/source/drivers/firebird/Blob.hxx
+++ b/connectivity/source/drivers/firebird/Blob.hxx
@@ -34,7 +34,7 @@ namespace connectivity
isc_db_handle* m_pDatabaseHandle;
isc_tr_handle* m_pTransactionHandle;
// We store our own copy of the blob id as typically the statement
- // manages it's own blob id, and blobs are independent of a statement
+ // manages its own blob id, and blobs are independent of a statement
// in firebird.
ISC_QUAD m_blobID;
isc_blob_handle m_blobHandle;
@@ -123,4 +123,4 @@ namespace connectivity
}
#endif // INCLUDED_CONNECTIVITY_SOURCE_DRIVERS_FIREBIRD_BLOB_HXX
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx
index 03bdae0e996e..95ef5f58c4bb 100644
--- a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx
+++ b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx
@@ -1695,7 +1695,7 @@ uno::Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTablePrivileges(
ODatabaseMetaDataResultSet::ORow aRow(8);
aRow[0] = new ORowSetValueDecorator(); // Unused
aRow[1] = new ORowSetValueDecorator(); // TABLE_CAT unsupported
- aRow[2] = new ORowSetValueDecorator(); // TABLE_SCHEM unussported.
+ aRow[2] = new ORowSetValueDecorator(); // TABLE_SCHEM unsupported.
while( rs->next() )
{
diff --git a/connectivity/source/drivers/firebird/ResultSetMetaData.cxx b/connectivity/source/drivers/firebird/ResultSetMetaData.cxx
index 2da269cd6693..df5ef4eab6f9 100644
--- a/connectivity/source/drivers/firebird/ResultSetMetaData.cxx
+++ b/connectivity/source/drivers/firebird/ResultSetMetaData.cxx
@@ -64,7 +64,7 @@ sal_Bool SAL_CALL OResultSetMetaData::isCaseSensitive(sal_Int32 column)
throw(SQLException, RuntimeException, std::exception)
{
// Firebird is generally case sensitive when using quoted identifiers.
- // IF THIS CHANGES make ResultSet::findColumn to be case-insenstive as needed.
+ // IF THIS CHANGES make ResultSet::findColumn to be case-insensitive as needed.
// Generally names that are entirely UPPERCASE are case insensitive, however
// there remains some ambiguity if there is another mixed-case-named column
// of the same name. For safety always assume case insensitive.