diff options
author | Maxime de Roucy <mderoucy@linagora.com> | 2013-04-04 18:05:24 +0200 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-04-25 08:55:10 +0000 |
commit | f215e634de4926def396d8442b8b15a912cb69e8 (patch) | |
tree | bcfb1be124987d29bcd620647165ba9be60e3ce3 /include/xmloff/xmlictxt.hxx | |
parent | e42eed90b5c8151f8b5520ca2728061b1ac8e41e (diff) |
comments and code reformat
Change-Id: Ib4e45cb85c9e5e5ffa6476c939300c6795412b1a
Reviewed-on: https://gerrit.libreoffice.org/3582
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/xmloff/xmlictxt.hxx')
-rw-r--r-- | include/xmloff/xmlictxt.hxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/include/xmloff/xmlictxt.hxx b/include/xmloff/xmlictxt.hxx index 37903e4b4f8a..2ed80c1ec7cf 100644 --- a/include/xmloff/xmlictxt.hxx +++ b/include/xmloff/xmlictxt.hxx @@ -58,37 +58,37 @@ public: sal_uInt16 GetPrefix() const { return mnPrefix; } const OUString& GetLocalName() const { return maLocalName; } - // A contexts constructor does anything that is required if an element - // starts. Namespace processing has been done already. - // Note that virtual methods cannot be used inside constructors. Use - // StartElement instead if this is required. + /** A contexts constructor does anything that is required if an element + * starts. Namespace processing has been done already. + * Note that virtual methods cannot be used inside constructors. Use + * StartElement instead if this is required. */ SvXMLImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName ); - // A contexts destructor does anything that is required if an element - // ends. By default, nothing is done. - // Note that virtual methods cannot be used inside destructors. Use - // EndElement instead if this is required. + /** A contexts destructor does anything that is required if an element + * ends. By default, nothing is done. + * Note that virtual methods cannot be used inside destructors. Use + * EndElement instead if this is required. */ virtual ~SvXMLImportContext(); - // Create a children element context. By default, the import's - // CreateContext method is called to create a new default context. + /** Create a children element context. By default, the import's + * CreateContext method is called to create a new default context. */ virtual SvXMLImportContext *CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ); - // StartElement is called after a context has been constructed and - // before a elements context is parsed. It may be used for actions that - // require virtual methods. The default is to do nothing. + /** StartElement is called after a context has been constructed and + * before a elements context is parsed. It may be used for actions that + * require virtual methods. The default is to do nothing. */ virtual void StartElement( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttrList ); - // EndElement is called before a context will be destructed, but - // after a elements context has been parsed. It may be used for actions - // that require virtual methods. The default is to do nothing. + /** EndElement is called before a context will be destructed, but + * after a elements context has been parsed. It may be used for actions + * that require virtual methods. The default is to do nothing. */ virtual void EndElement(); - // This method is called for all characters that are contained in the - // current element. The default is to ignore them. + /** This method is called for all characters that are contained in the + * current element. The default is to ignore them. */ virtual void Characters( const OUString& rChars ); }; |