Kaydet (Commit) d9943588 authored tarafından David Tardon's avatar David Tardon

WaE: declaration of 'size' shadows a member of 'this'

üst 3129678c
...@@ -51,8 +51,8 @@ using rtl::OUString; ...@@ -51,8 +51,8 @@ using rtl::OUString;
// //
//------------------------------------------------------------------------ //------------------------------------------------------------------------
CAutoUnicodeBuffer::CAutoUnicodeBuffer( size_t size, sal_Bool bLazyCreation ) : CAutoUnicodeBuffer::CAutoUnicodeBuffer( size_t nSize, sal_Bool bLazyCreation ) :
m_buffSize( size ), m_buffSize( nSize ),
m_pBuff( NULL ) m_pBuff( NULL )
{ {
if ( !bLazyCreation ) if ( !bLazyCreation )
......
...@@ -49,7 +49,7 @@ public: ...@@ -49,7 +49,7 @@ public:
// if bLazyCreation is true the buffer will be created // if bLazyCreation is true the buffer will be created
// when someone wants to fill the buffer // when someone wants to fill the buffer
CAutoUnicodeBuffer( size_t size, sal_Bool bLazyCreation = sal_False ); CAutoUnicodeBuffer( size_t nSize, sal_Bool bLazyCreation = sal_False );
~CAutoUnicodeBuffer( ); ~CAutoUnicodeBuffer( );
// resizes the buffer // resizes the buffer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment