[Libreoffice-commits] .: oox/source
Joseph Powers
jpowers at kemper.freedesktop.org
Tue Jun 7 20:59:27 PDT 2011
oox/source/core/filterdetect.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit a6e567776019eb769b107e290a7e2e7655c5a686
Author: Joseph Powers <jpowers27 at cox.net>
Date: Tue Jun 7 20:59:21 2011 -0700
The enum type name should be included when accessing the enum values.
diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx
index d1f5e4e..48d7dee 100644
--- a/oox/source/core/filterdetect.cxx
+++ b/oox/source/core/filterdetect.cxx
@@ -173,7 +173,7 @@ void FilterDetectDocHandler::parseRelationship( const AttributeList& rAttribs )
Reference< com::sun::star::uri::XUriReference > xBase = xFac->parse( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("file:///" ) ) );
Reference< com::sun::star::uri::XUriReference > xPart = xFac->parse( rAttribs.getString( XML_Target, OUString() ) );
- Reference< com::sun::star::uri::XUriReference > xAbs = xFac->makeAbsolute( xBase, xPart, sal_True, com::sun::star::uri::RelativeUriExcessParentSegments::RelativeUriExcessParentSegments_RETAIN );
+ Reference< com::sun::star::uri::XUriReference > xAbs = xFac->makeAbsolute( xBase, xPart, sal_True, com::sun::star::uri::RelativeUriExcessParentSegments_RETAIN );
if ( xAbs.is() )
maTargetPath = xAbs->getPath();
More information about the Libreoffice-commits
mailing list