Kaydet (Commit) fa4d109a authored tarafından Luboš Luňák's avatar Luboš Luňák

one more strange mingw string problem

For some reason neither OUString(aValue) nor (OUString)aValue work.
üst 7fb4100d
...@@ -916,7 +916,7 @@ sal_Int32 SAL_CALL ODatabaseMetaData::getDriverMinorVersion( ) throw(RuntimeExc ...@@ -916,7 +916,7 @@ sal_Int32 SAL_CALL ODatabaseMetaData::getDriverMinorVersion( ) throw(RuntimeExc
WpOLEAppendCollection<ADOFields, ADOField, WpADOField> aFields(aRecordset.GetFields()); WpOLEAppendCollection<ADOFields, ADOField, WpADOField> aFields(aRecordset.GetFields());
WpADOField aField(aFields.GetItem(0)); WpADOField aField(aFields.GetItem(0));
aField.get_Value(aValue); aField.get_Value(aValue);
aRet = aRet + OUString( aValue ) + aComma; aRet = aRet + (aValue.operator OUString()) + aComma;
aRecordset.MoveNext(); aRecordset.MoveNext();
} }
aRecordset.Close(); aRecordset.Close();
......
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