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;
//
//------------------------------------------------------------------------
CAutoUnicodeBuffer::CAutoUnicodeBuffer( size_t size, sal_Bool bLazyCreation ) :
m_buffSize( size ),
CAutoUnicodeBuffer::CAutoUnicodeBuffer( size_t nSize, sal_Bool bLazyCreation ) :
m_buffSize( nSize ),
m_pBuff( NULL )
{
if ( !bLazyCreation )
......
......@@ -49,7 +49,7 @@ public:
// if bLazyCreation is true the buffer will be created
// 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( );
// 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