summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-07 20:59:21 -0700
committerJoseph Powers <jpowers27@cox.net>2011-06-07 20:59:21 -0700
commit2465577dbe54362e935d54265604a17dc77d6bb8 (patch)
tree1165b7d8f1489b75d1efe4e1363ab15a87f27190 /oox
parenta4e6f0ab8835f5557e3a9ba081cd1cb67db7e920 (diff)
The enum type name should be included when accessing the enum values.
Diffstat (limited to 'oox')
-rw-r--r--oox/source/core/filterdetect.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx
index 75e54f9eb123..42e88f0e7a56 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();