diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-08 11:37:45 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-05-08 11:38:08 +0200 |
commit | 80743f11fcdb49f997b0a8ff08bee28a0f2cfce7 (patch) | |
tree | e12dfddadee132dfa5fc64ec279ccb18e8c6bfbd /oox | |
parent | a20d53afb97a278a16ad604cb65f107d33ab4fb9 (diff) |
Unused oox::AttributeList::getUnsignedHex() variant
Change-Id: I4ec0cd4781aaa905f734b15ba4eff7819ca01082
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/helper/attributelist.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/oox/source/helper/attributelist.cxx b/oox/source/helper/attributelist.cxx index 34cd84020315..e2e5f9ae6c83 100644 --- a/oox/source/helper/attributelist.cxx +++ b/oox/source/helper/attributelist.cxx @@ -191,13 +191,6 @@ OptValue< sal_Int32 > AttributeList::getIntegerHex( sal_Int32 nAttrToken ) const return OptValue< sal_Int32 >( bValid, bValid ? AttributeConversion::decodeIntegerHex( aValue ) : 0 ); } -OptValue< sal_uInt32 > AttributeList::getUnsignedHex( sal_Int32 nAttrToken ) const -{ - OUString aValue = mxAttribs->getOptionalValue( nAttrToken ); - bool bValid = !aValue.isEmpty(); - return OptValue< sal_uInt32 >( bValid, bValid ? AttributeConversion::decodeUnsignedHex( aValue ) : 0 ); -} - OptValue< bool > AttributeList::getBool( sal_Int32 nAttrToken ) const { const char *pAttr; |