[Libreoffice-commits] .: sw/source

Miklos Vajna vmiklos at kemper.freedesktop.org
Thu Oct 28 11:40:30 PDT 2010


 sw/source/filter/ww8/rtfattributeoutput.hxx |    1 +
 sw/source/filter/ww8/rtfexport.cxx          |    1 +
 sw/source/filter/ww8/rtfexportfilter.hxx    |    2 +-
 sw/source/filter/ww8/rtfsdrexport.hxx       |    1 +
 sw/source/filter/ww8/wrtww8.hxx             |    1 +
 5 files changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 2a458260e4bc014b3be769fa75c5ed1886dcb360
Author: Miklos Vajna <vmiklos at frugalware.org>
Date:   Sat Oct 23 18:47:42 2010 +0200

    RTF: add missing doxygen comments for classes
    
    Also remove duplicated modelines. The ones added automatically are
    right, no need for the old ones.

diff --git a/sw/source/filter/ww8/rtfattributeoutput.hxx b/sw/source/filter/ww8/rtfattributeoutput.hxx
index bf7bf8a..84c50b8 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 c9912c8..d18482e 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 c6589a4..2a8705e 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 305eafb..de618d6 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 0a034d9..a1529b4 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:


More information about the Libreoffice-commits mailing list