diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-01-08 23:08:34 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-01-09 00:00:47 +0100 |
commit | 2f69e16c723aab48ad59d17397d8946ec0a48138 (patch) | |
tree | f59943e7a27ad60eda30cab8cdc3e8e716401db2 /include/xmloff/xmlexp.hxx | |
parent | d7bebc89c19d70344a8d71c729bbcb3a59004114 (diff) |
override the overloading of "overload" to decrease cognitive (over-)load
Change-Id: I4d0e1de89d0bbdbea23bc5a46bf75ae0ce4e2796
Diffstat (limited to 'include/xmloff/xmlexp.hxx')
-rw-r--r-- | include/xmloff/xmlexp.hxx | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/include/xmloff/xmlexp.hxx b/include/xmloff/xmlexp.hxx index 747594250fa0..111fcae5345f 100644 --- a/include/xmloff/xmlexp.hxx +++ b/include/xmloff/xmlexp.hxx @@ -191,33 +191,31 @@ protected: // get a new namespave map (used in starmath to have a default namespace) void ResetNamespaceMap(); - // This method can be overloaded to export the content of <office:meta>. - // There is a default implementation. + /// Override this method to export the content of <office:meta>. + /// There is a default implementation. virtual void _ExportMeta(); - // This method can be overloaded to export the content of <office:scripts>. - // There is a default implementation. + /// Override this method to export the content of <office:scripts>. + /// There is a default implementation. virtual void _ExportScripts(); - // This method can be overloaded to export the font declarations - // The default implementation will export the contents of the - // XMLFontAutoStylePool if it has been created. + /// Override this method to export the font declarations + /// The default implementation will export the contents of the + /// XMLFontAutoStylePool if it has been created. virtual void _ExportFontDecls(); - // This method should be overloaded to export the content of <style:styles>. - // If bUsed is set, used styles should be exported only. - // Overloaded Methods must call this method ! + /// Override this method to export the content of <style:styles>. + /// If bUsed is set, used styles should be exported only. + /// Overriding Methods must call this method ! virtual void _ExportStyles( bool bUsed ); - // This method must be overloaded to export the contents of - // <style:auto-styles> + /// Override this method to export the contents of <style:auto-styles>. virtual void _ExportAutoStyles() = 0; - // This method must be overloaded to export the contents of - // <style:master-styles> + /// Override this method to export the contents of <style:master-styles>. virtual void _ExportMasterStyles() = 0; - // This method must be overloaded to export the content of <office:body>. + /// Override this method to export the content of <office:body>. virtual void _ExportContent() = 0; OUString GetSourceShellID() const; |