summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-07 21:12:25 -0700
committerJoseph Powers <jpowers27@cox.net>2011-06-07 21:12:25 -0700
commit991fce7134052aafabe972876e1a70d680641c3c (patch)
treee8b0a9e7e426a2dddb7176b1e26ee31ce3570299 /oox
parent2465577dbe54362e935d54265604a17dc77d6bb8 (diff)
gcc 4.0 doesn't support the C++0x usage of enum::value
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 42e88f0e7a56..98040dc60ace 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_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();