cppcheck: noExplicitConstructor
Change-Id: Ic334d7b0110319e0c581eecd111b73d1cce3134d
This commit is contained in:
@@ -361,9 +361,9 @@ class LocatorImpl :
|
||||
// should use a different interface for stream positions!
|
||||
{
|
||||
public:
|
||||
LocatorImpl( SaxExpatParser_Impl *p )
|
||||
explicit LocatorImpl(SaxExpatParser_Impl *p)
|
||||
: m_pParser(p)
|
||||
{
|
||||
m_pParser = p;
|
||||
}
|
||||
|
||||
public: //XLocator
|
||||
|
@@ -106,13 +106,13 @@ private:
|
||||
sal_uInt32& rPos) throw( SAXException );
|
||||
inline void FinishStartElement() throw( SAXException );
|
||||
public:
|
||||
SaxWriterHelper(Reference< XOutputStream > m_TempOut) :
|
||||
m_out(m_TempOut),
|
||||
m_Sequence(SEQUENCESIZE),
|
||||
mp_Sequence(NULL),
|
||||
nLastLineFeedPos(0),
|
||||
nCurrentPos(0),
|
||||
m_bStartElementFinished(true)
|
||||
explicit SaxWriterHelper(Reference< XOutputStream > m_TempOut)
|
||||
: m_out(m_TempOut)
|
||||
, m_Sequence(SEQUENCESIZE)
|
||||
, mp_Sequence(NULL)
|
||||
, nLastLineFeedPos(0)
|
||||
, nCurrentPos(0)
|
||||
, m_bStartElementFinished(true)
|
||||
{
|
||||
OSL_ENSURE(SEQUENCESIZE > 50, "Sequence cache size to small");
|
||||
mp_Sequence = m_Sequence.getArray();
|
||||
|
Reference in New Issue
Block a user