More loplugin:cstylecast: sot

Change-Id: Ic591422ad8b643d690a43a599e99352160fea480
This commit is contained in:
Stephan Bergmann
2018-01-15 09:03:03 +01:00
parent 761b4d865b
commit c81e832585

View File

@@ -124,7 +124,7 @@ public:
sal_Int32 Compare( const StgEntry& ) const; // compare two entries
bool Load( const void* pBuffer, sal_uInt32 nBufSize, sal_uInt64 nUnderlyingStreamSize );
void Store( void* );
StgEntryType GetType() const { return (StgEntryType) m_cType; }
StgEntryType GetType() const { return static_cast<StgEntryType>(m_cType); }
sal_Int32 GetStartPage() const { return m_nPage1; }
void SetType( StgEntryType t ) { m_cType = static_cast<sal_uInt8>(t); }
sal_Int32 GetSize() const { return m_nSize; }