diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-25 17:17:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-11-26 13:26:25 +0200 |
commit | a508f639a033cefe10ad78a09d3b3c46c162aad9 (patch) | |
tree | 597720af61860cae97cffd84c638bcaa73e8e381 /ucb | |
parent | abc6071b7a8af354a56c91e4caecd8afc79f55cc (diff) |
mark UNO structs as SAL_WARN_UNUSED, where possible
Change-Id: Ie3de518f60c9f1313c68df54dbdc1fb2804f1f0d
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/cacher/cachedcontentresultset.cxx | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/ucb/source/cacher/cachedcontentresultset.cxx b/ucb/source/cacher/cachedcontentresultset.cxx index b2f04092bb37..488fecdcb4a3 100644 --- a/ucb/source/cacher/cachedcontentresultset.cxx +++ b/ucb/source/cacher/cachedcontentresultset.cxx @@ -1127,30 +1127,26 @@ Any SAL_CALL CachedContentResultSet throw UnknownPropertyException(); } - Property aProp = m_pMyPropSetInfo->getPropertyByName( rPropertyName ); + m_pMyPropSetInfo->getPropertyByName( rPropertyName ); //throws UnknownPropertyException, if so Any aValue; - if( rPropertyName == CCRS_PropertySetInfo - ::m_aPropertyNameForCount ) + if( rPropertyName == CCRS_PropertySetInfo::m_aPropertyNameForCount ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); aValue <<= m_nKnownCount; } - else if( rPropertyName == CCRS_PropertySetInfo - ::m_aPropertyNameForFinalCount ) + else if( rPropertyName == CCRS_PropertySetInfo::m_aPropertyNameForFinalCount ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); aValue <<= m_bFinalCount; } - else if( rPropertyName == CCRS_PropertySetInfo - ::m_aPropertyNameForFetchSize ) + else if( rPropertyName == CCRS_PropertySetInfo::m_aPropertyNameForFetchSize ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); aValue <<= m_nFetchSize; } - else if( rPropertyName == CCRS_PropertySetInfo - ::m_aPropertyNameForFetchDirection ) + else if( rPropertyName == CCRS_PropertySetInfo::m_aPropertyNameForFetchDirection ) { osl::Guard< osl::Mutex > aGuard( m_aMutex ); aValue <<= m_nFetchDirection; |