Tag: cws_src680_mysqlnative User: fs Date: 2008-06-10 07:28:08+0000 Modified: dba/dbaccess/source/filter/xml/xmlExport.cxx
Log: #i10000# File Changes: Directory: /dba/dbaccess/source/filter/xml/ =========================================== File [changed]: xmlExport.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/filter/xml/xmlExport.cxx?r1=1.20.24.1&r2=1.20.24.2 Delta lines: +4 -4 ------------------- --- xmlExport.cxx 2008-06-03 11:43:39+0000 1.20.24.1 +++ xmlExport.cxx 2008-06-10 07:28:04+0000 1.20.24.2 @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: xmlExport.cxx,v $ - * $Revision: 1.20.24.1 $ + * $Revision: 1.20.24.2 $ * * This file is part of OpenOffice.org. * @@ -666,9 +666,9 @@ static const ::rtl::OUString s_sLocalSocket(RTL_CONSTASCII_USTRINGPARAM("LocalSocket")); if ( xSettingsInfo.is() && xSettingsInfo->hasPropertyByName(s_sLocalSocket) ) { - ::rtl::OUString sValue; - if ( ( xDataSourceSettings->getPropertyValue(s_sLocalSocket) >>= sValue ) && sValue.getLength() ) - AddAttribute(XML_NAMESPACE_DB,XML_LOCAL_SOCKET,sValue); + ::rtl::OUString sSocket; + if ( ( xDataSourceSettings->getPropertyValue(s_sLocalSocket) >>= sSocket ) && sSocket.getLength() ) + AddAttribute(XML_NAMESPACE_DB,XML_LOCAL_SOCKET,sSocket); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
