summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-07 20:59:21 -0700
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-07-07 15:07:11 +0200
commit0b87c46a182a9fb15f5dbbdd2f00bde04c99e79b (patch)
treedc41fa837d4e479fa6dd59790e10be6c0e94c4f2
parent67f661f7d07ee319e3d4b435e07a33aea5baaab7 (diff)
The enum type name should be included when accessing the enum values.
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
-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 0857cf465..44f050aad 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();