summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-06-07 21:12:25 -0700
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-07-07 15:07:11 +0200
commite5493aa2ecd510996ca8e39e2dc90ca92a3a9ba4 (patch)
tree06988feaeef5b93655c6bba3eabbbf0c8002000d /oox
parent6cc4bc8e385bc88193f8d01b79db5bc48d6ca07c (diff)
gcc 4.0 doesn't support the C++0x usage of enum::value
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
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 4c54bd019e39..46885bdb3a4a 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();