diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-15 15:44:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-16 08:17:34 +0200 |
commit | ce3441c2d5b6267c437b7af362fc8d29e38c1dd4 (patch) | |
tree | 75a704ec8625919f06c6106a1a321db989a4874e /helpcompiler/inc | |
parent | 1b9f6808531207d0280bc80374ef75551e3fb732 (diff) |
convert HelpProcessingErrorClass to scoped enum
and drop unused HELPPROCESSING_INTERNAL_ERROR enumerator
Change-Id: I0f2cf063a3f1472e1d52bab5039b1c3158d4865e
Diffstat (limited to 'helpcompiler/inc')
-rw-r--r-- | helpcompiler/inc/HelpCompiler.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpcompiler/inc/HelpCompiler.hxx b/helpcompiler/inc/HelpCompiler.hxx index e0c1b67823f1..0e4975424d9d 100644 --- a/helpcompiler/inc/HelpCompiler.hxx +++ b/helpcompiler/inc/HelpCompiler.hxx @@ -199,7 +199,7 @@ struct HelpProcessingException , m_nXMLParsingLine( 0 ) {} HelpProcessingException( const std::string& aErrorMsg, const std::string& aXMLParsingFile, int nXMLParsingLine ) - : m_eErrorClass( HELPPROCESSING_XMLPARSING_ERROR ) + : m_eErrorClass( HelpProcessingErrorClass::XmlParsing ) , m_aErrorMsg( aErrorMsg ) , m_aXMLParsingFile( aXMLParsingFile ) , m_nXMLParsingLine( nXMLParsingLine ) |