connectivity/source/drivers/ado/ADatabaseMetaData.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit fa4d109a77f5fdbae6be51138402a35b5e551dc1 Author: LuboÅ¡ LuÅák <l.lu...@suse.cz> Date: Mon Dec 3 23:22:43 2012 +0100 one more strange mingw string problem For some reason neither OUString(aValue) nor (OUString)aValue work. diff --git a/connectivity/source/drivers/ado/ADatabaseMetaData.cxx b/connectivity/source/drivers/ado/ADatabaseMetaData.cxx index ad14483..cf8821f 100644 --- a/connectivity/source/drivers/ado/ADatabaseMetaData.cxx +++ b/connectivity/source/drivers/ado/ADatabaseMetaData.cxx @@ -916,7 +916,7 @@ sal_Int32 SAL_CALL ODatabaseMetaData::getDriverMinorVersion( ) throw(RuntimeExc WpOLEAppendCollection<ADOFields, ADOField, WpADOField> aFields(aRecordset.GetFields()); WpADOField aField(aFields.GetItem(0)); aField.get_Value(aValue); - aRet = aRet + OUString( aValue ) + aComma; + aRet = aRet + (aValue.operator OUString()) + aComma; aRecordset.MoveNext(); } aRecordset.Close();
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits