[Libreoffice-commits] core.git: sw/inc sw/source
Miklos Vajna
vmiklos at collabora.co.uk
Fri Mar 14 06:43:43 PDT 2014
sw/inc/swtable.hxx | 3 +++
sw/source/core/inc/cellfrm.hxx | 1 +
sw/source/core/inc/rowfrm.hxx | 1 +
sw/source/core/inc/tabfrm.hxx | 1 +
4 files changed, 6 insertions(+)
New commits:
commit 90dd0d37a5188ae05c8574a1eda7c7bb5d4e8b8f
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date: Fri Mar 14 14:26:12 2014 +0100
sw: deploy a couple of doxygen comments
Change-Id: Ibdacb2a5fa3abf28a2907924b4e438699f8b53ae
diff --git a/sw/inc/swtable.hxx b/sw/inc/swtable.hxx
index cd3d00a..47c5991 100644
--- a/sw/inc/swtable.hxx
+++ b/sw/inc/swtable.hxx
@@ -91,6 +91,7 @@ public:
// (for calculation in table).
class SwTableSortBoxes : public o3tl::sorted_vector<SwTableBox*> {};
+/// SwTable is one table in the document model, containing rows (which contain cells).
class SW_DLLPUBLIC SwTable: public SwClient //Client of FrmFmt.
{
@@ -336,6 +337,7 @@ public:
bool HasLayout() const;
};
+/// SwTableLine is one table row in the document model.
class SW_DLLPUBLIC SwTableLine: public SwClient // Client of FrmFmt.
{
SwTableBoxes aBoxes;
@@ -375,6 +377,7 @@ public:
void RegisterToFormat( SwFmt& rFmt );
};
+/// SwTableBox is one table cell in the document model.
class SW_DLLPUBLIC SwTableBox: public SwClient //Client of FrmFmt.
{
friend class SwNodes; // Transpose index.
diff --git a/sw/source/core/inc/cellfrm.hxx b/sw/source/core/inc/cellfrm.hxx
index fa2bc1a..b362fc7 100644
--- a/sw/source/core/inc/cellfrm.hxx
+++ b/sw/source/core/inc/cellfrm.hxx
@@ -27,6 +27,7 @@ class SwTableBox;
struct SwCrsrMoveState;
class SwBorderAttrs;
+/// SwCellFrm is one table cell in the document layout.
class SwCellFrm: public SwLayoutFrm
{
const SwTableBox* pTabBox;
diff --git a/sw/source/core/inc/rowfrm.hxx b/sw/source/core/inc/rowfrm.hxx
index 62beae4..083fda7 100644
--- a/sw/source/core/inc/rowfrm.hxx
+++ b/sw/source/core/inc/rowfrm.hxx
@@ -26,6 +26,7 @@
class SwTableLine;
class SwBorderAttrs;
+/// SwRowFrm is one table row in the document layout.
class SwRowFrm: public SwLayoutFrm
{
virtual void Format( const SwBorderAttrs *pAttrs = 0 );
diff --git a/sw/source/core/inc/tabfrm.hxx b/sw/source/core/inc/tabfrm.hxx
index 7d8c15a..44ff0f3 100644
--- a/sw/source/core/inc/tabfrm.hxx
+++ b/sw/source/core/inc/tabfrm.hxx
@@ -27,6 +27,7 @@ class SwTable;
class SwBorderAttrs;
class SwAttrSetChg;
+/// SwTabFrm is one table in the document layout, containing rows (which contain cells).
class SwTabFrm: public SwLayoutFrm, public SwFlowFrm
{
friend void CalcCntnt( SwLayoutFrm *pLay, bool bNoColl, bool bNoCalcFollow );
More information about the Libreoffice-commits
mailing list