diff options
author | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-22 20:22:27 +0200 |
---|---|---|
committer | Andrzej J.R. Hunt <andrzej@ahunt.org> | 2013-07-22 20:22:27 +0200 |
commit | 7f653884f96b90d5da5a85487234a7e7182df3fa (patch) | |
tree | 237e6f7050650f7ea0d532ed726fb51570a7ff67 /connectivity | |
parent | ea79b364499d7d9df06fb0cd048f53a38b95077b (diff) |
Hopefully the last ambiguous conversion fix (firebird-sdbc).
Change-Id: If290239444f4849e3f5355a3c0a64416fc5c691d
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/FDatabaseMetaData.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx b/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx index 35fa88e55221..3545970b78b6 100644 --- a/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx +++ b/connectivity/source/drivers/firebird/FDatabaseMetaData.cxx @@ -1039,7 +1039,7 @@ uno::Reference< XResultSet > SAL_CALL ODatabaseMetaData::getColumns( short aColumnNumber = xRow->getShort(5); // Firebird stores column numbers beginning with 0 internally // SDBC expects column numbering to begin with 1. - aCurrentRow.push_back(new ORowSetValueDecorator(aColumnNumber + 1)); + aCurrentRow.push_back(new ORowSetValueDecorator(sal_Int32(aColumnNumber + 1))); } // 18. Is nullable if (xRow->getShort(9)) |