From f215e634de4926def396d8442b8b15a912cb69e8 Mon Sep 17 00:00:00 2001 From: Maxime de Roucy Date: Thu, 4 Apr 2013 18:05:24 +0200 Subject: comments and code reformat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib4e45cb85c9e5e5ffa6476c939300c6795412b1a Reviewed-on: https://gerrit.libreoffice.org/3582 Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- include/xmloff/xmlictxt.hxx | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'include/xmloff/xmlictxt.hxx') 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 ); }; -- cgit