diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2010-10-23 18:47:42 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2010-10-28 20:37:07 +0200 |
commit | 2a458260e4bc014b3be769fa75c5ed1886dcb360 (patch) | |
tree | 97fc9a249af7a17690ea84469b4b386bb846276d | |
parent | e2cc8e3395992267079539f412eab691a50b6c48 (diff) |
RTF: add missing doxygen comments for classes
Also remove duplicated modelines. The ones added automatically are
right, no need for the old ones.
-rw-r--r-- | sw/source/filter/ww8/rtfattributeoutput.hxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfexport.cxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfexportfilter.hxx | 2 | ||||
-rw-r--r-- | sw/source/filter/ww8/rtfsdrexport.hxx | 1 | ||||
-rw-r--r-- | sw/source/filter/ww8/wrtww8.hxx | 1 |
5 files changed, 5 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfattributeoutput.hxx b/sw/source/filter/ww8/rtfattributeoutput.hxx index bf7bf8a39f..84c50b8d30 100644 --- a/sw/source/filter/ww8/rtfattributeoutput.hxx +++ b/sw/source/filter/ww8/rtfattributeoutput.hxx @@ -46,6 +46,7 @@ class SwGrfNode; class SwOLENode; class SdrObject; +/// The class that has handlers for various resource types when exporting as RTF class RtfAttributeOutput : public AttributeOutputBase { public: diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index c9912c8fc3..d18482e4eb 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx @@ -1233,6 +1233,7 @@ void RtfExport::WriteHeaderFooter(const SwFrmFmt& rFmt, bool bHeader, const sal_ OSL_TRACE("%s end", OSL_THIS_FUNC); } +/// Glue class to call RtfExport as an internal filter, needed by copy&paste support. class SwRTFWriter : public Writer { public: diff --git a/sw/source/filter/ww8/rtfexportfilter.hxx b/sw/source/filter/ww8/rtfexportfilter.hxx index c6589a43b8..2a8705e399 100644 --- a/sw/source/filter/ww8/rtfexportfilter.hxx +++ b/sw/source/filter/ww8/rtfexportfilter.hxx @@ -36,7 +36,7 @@ #include <tools/stream.hxx> #include <shellio.hxx> -// This is just here so that we don't have to copy&paste its string format methods +/// Dummy Writer implementation to be able to use the string format methods of the base class class RtfWriter : public Writer { protected: diff --git a/sw/source/filter/ww8/rtfsdrexport.hxx b/sw/source/filter/ww8/rtfsdrexport.hxx index 305eafbc2f..de618d69ab 100644 --- a/sw/source/filter/ww8/rtfsdrexport.hxx +++ b/sw/source/filter/ww8/rtfsdrexport.hxx @@ -38,6 +38,7 @@ class RtfExport; class RtfAttributeOutput; +/// Handles export of drawings using RTF markup class RtfSdrExport : public EscherEx { RtfExport &m_rExport; diff --git a/sw/source/filter/ww8/wrtww8.hxx b/sw/source/filter/ww8/wrtww8.hxx index 0a034d9cd7..a1529b4763 100644 --- a/sw/source/filter/ww8/wrtww8.hxx +++ b/sw/source/filter/ww8/wrtww8.hxx @@ -1371,6 +1371,7 @@ public: virtual const SfxPoolItem& GetItem( USHORT nWhich ) const = 0; }; +/// Used to export formatted text associated to drawings. class MSWord_SdrAttrIter : public MSWordAttrIter { private: |