diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-27 21:22:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-27 21:22:51 +0000 |
commit | 47e0e8ecfd1c18cc674e3e0a4956e38bb1b8a8e5 (patch) | |
tree | 28bb51905ddde756e59e7efb959e2e41271e4938 /l10ntools | |
parent | bf04ecc6d352299df3f86844af253d6417101740 (diff) |
cppcheck: uninitialized member
Diffstat (limited to 'l10ntools')
-rw-r--r-- | l10ntools/source/help/HelpCompiler.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/l10ntools/source/help/HelpCompiler.hxx b/l10ntools/source/help/HelpCompiler.hxx index 81b5bde0b182..5b57b7fbe680 100644 --- a/l10ntools/source/help/HelpCompiler.hxx +++ b/l10ntools/source/help/HelpCompiler.hxx @@ -274,6 +274,7 @@ struct HelpProcessingException HelpProcessingException( HelpProcessingErrorClass eErrorClass, const std::string& aErrorMsg ) : m_eErrorClass( eErrorClass ) , m_aErrorMsg( aErrorMsg ) + , m_nXMLParsingLine( 0 ) {} HelpProcessingException( const std::string& aErrorMsg, const std::string& aXMLParsingFile, int nXMLParsingLine ) : m_eErrorClass( HELPPROCESSING_XMLPARSING_ERROR ) |