From 54e87df11faf697d3b2666198a3d20b3ee091419 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 2 Apr 2015 18:32:36 +0200 Subject: Change INetProtocol enumerators to CamelCase ...to avoid clashes with macros and poor warnings about hiding global FILE Change-Id: I444e8b958f029201b228937e088efabc4b6d3050 --- xmloff/source/forms/elementexport.cxx | 2 +- xmloff/source/forms/elementimport.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'xmloff') diff --git a/xmloff/source/forms/elementexport.cxx b/xmloff/source/forms/elementexport.cxx index 9fd3a6142cd8..610a30fd6621 100644 --- a/xmloff/source/forms/elementexport.cxx +++ b/xmloff/source/forms/elementexport.cxx @@ -2116,7 +2116,7 @@ namespace xmloff if ( !m_bCreateConnectionResourceElement ) { INetURLObject aURL(sPropValue); - m_bCreateConnectionResourceElement = ( aURL.GetProtocol() == INetProtocol::FILE ); + m_bCreateConnectionResourceElement = ( aURL.GetProtocol() == INetProtocol::File ); if ( !m_bCreateConnectionResourceElement ) exportStringPropertyAttribute( OAttributeMetaData::getFormAttributeNamespace(faDatasource), diff --git a/xmloff/source/forms/elementimport.cxx b/xmloff/source/forms/elementimport.cxx index 99c0af3700c5..3c03e0bc3ad0 100644 --- a/xmloff/source/forms/elementimport.cxx +++ b/xmloff/source/forms/elementimport.cxx @@ -2061,7 +2061,7 @@ namespace xmloff OUString sValue = _xAttrList->getValueByIndex( i ); INetURLObject aURL(sValue); - if ( aURL.GetProtocol() == INetProtocol::FILE ) + if ( aURL.GetProtocol() == INetProtocol::File ) _xElement->setPropertyValue(PROPERTY_DATASOURCENAME,makeAny(sValue)); else _xElement->setPropertyValue(PROPERTY_URL,makeAny(sValue)); // the url is the "sdbc:" string -- cgit