loplugin:stringstatic

Change-Id: Ia5d7ca7864dbef1489294783438b9d718159614b
This commit is contained in:
Stephan Bergmann 2016-08-16 11:10:20 +02:00
parent a8a2f64742
commit 2faa219ac8

View File

@ -997,22 +997,22 @@ Reference< XResultSet > SAL_CALL OEvoabDatabaseMetaData::getTableTypes( ) throw
/* Don't need to change as evoab driver supports only table */ /* Don't need to change as evoab driver supports only table */
// there exists no possibility to get table types so we have to check // there exists no possibility to get table types so we have to check
static const OUString sTableTypes[] = static const OUStringLiteral sTableTypes[] =
{ {
OUString("TABLE"), OUStringLiteral("TABLE"),
// Currently we only support a 'TABLE' nothing more complex // Currently we only support a 'TABLE' nothing more complex
}; };
::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTableTypes); ::connectivity::ODatabaseMetaDataResultSet* pResult = new ::connectivity::ODatabaseMetaDataResultSet(::connectivity::ODatabaseMetaDataResultSet::eTableTypes);
Reference< XResultSet > xRef = pResult; Reference< XResultSet > xRef = pResult;
// here we fill the rows which should be visible when ask for data from the resultset returned here // here we fill the rows which should be visible when ask for data from the resultset returned here
sal_Int32 nSize = sizeof(sTableTypes) / sizeof(OUString); sal_Int32 nSize = SAL_N_ELEMENTS(sTableTypes);
ODatabaseMetaDataResultSet::ORows aRows; ODatabaseMetaDataResultSet::ORows aRows;
for(sal_Int32 i=0;i < nSize;++i) for(sal_Int32 i=0;i < nSize;++i)
{ {
ODatabaseMetaDataResultSet::ORow aRow; ODatabaseMetaDataResultSet::ORow aRow;
aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue()); aRow.push_back(ODatabaseMetaDataResultSet::getEmptyValue());
aRow.push_back(new ORowSetValueDecorator(sTableTypes[i])); aRow.push_back(new ORowSetValueDecorator(OUString(sTableTypes[i])));
// bound row // bound row
aRows.push_back(aRow); aRows.push_back(aRow);