Kaydet (Commit) 7b0c57b2 authored tarafından Lionel Elie Mamane's avatar Lionel Elie Mamane

some compilers don't like implicit bool-to-ORowSetValue conversion

Change-Id: Ic4463db8aeca6ae9a86f7b890f95eb73724c6a1b
üst 5e79d60f
...@@ -482,7 +482,7 @@ ORowSetValue OResultSet::retrieveValue(const sal_Int32 nColumnIndex, const ISC_S ...@@ -482,7 +482,7 @@ ORowSetValue OResultSet::retrieveValue(const sal_Int32 nColumnIndex, const ISC_S
return getString(nColumnIndex); return getString(nColumnIndex);
return getLong(nColumnIndex); return getLong(nColumnIndex);
case SQL_BOOLEAN: case SQL_BOOLEAN:
return getBoolean(nColumnIndex); return ORowSetValue(getBoolean(nColumnIndex));
case SQL_BLOB: case SQL_BLOB:
case SQL_NULL: case SQL_NULL:
case SQL_QUAD: case SQL_QUAD:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment