diff options
author | Abdulmajeed Al-Abaulrazzaq <aalabdulrazzaq@kacst.edu.sa> | 2012-09-11 15:16:03 +0300 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-09-11 17:54:21 +0000 |
commit | 4ed62ddb01e4ecff9de01246ea4c040f007c1196 (patch) | |
tree | ea75c2b5e5ef8b01d6cc1aafdccc10f29a7e982c /sw/inc/ndole.hxx | |
parent | a8a15bd95c4fda67c6785036bfbf50f94a749496 (diff) |
Modifying comments to meet doxygen standards
Change-Id: I363ce532c7d11e798c2a5cc67b1b7893dcd0a389
Reviewed-on: https://gerrit.libreoffice.org/596
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/inc/ndole.hxx')
-rw-r--r-- | sw/inc/ndole.hxx | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sw/inc/ndole.hxx b/sw/inc/ndole.hxx index f09f39ef1d89..bcad138592e9 100644 --- a/sw/inc/ndole.hxx +++ b/sw/inc/ndole.hxx @@ -45,12 +45,12 @@ class SW_DLLPUBLIC SwOLEObj const SwOLENode* pOLENd; SwOLEListener_Impl* pListener; - // Either ref or name are known. If only name is known, ref is obtained - // on demand by GetOleRef() from Sfx. + /** Either ref or name are known. If only name is known, ref is obtained + on demand by GetOleRef() from Sfx. */ svt::EmbeddedObjectRef xOLERef; String aName; - SwOLEObj( const SwOLEObj& rObj ); // Not allowed. + SwOLEObj( const SwOLEObj& rObj ); /// Not allowed. SwOLEObj(); void SetNode( SwOLENode* pNode ); @@ -71,7 +71,7 @@ public: const com::sun::star::uno::Reference < com::sun::star::embed::XEmbeddedObject > GetOleRef(); svt::EmbeddedObjectRef& GetObject(); const String& GetCurrentPersistName() const { return aName; } - sal_Bool IsOleRef() const; // To avoid unneccessary loading of object. + sal_Bool IsOleRef() const; ///< To avoid unneccessary loading of object. #endif }; @@ -84,9 +84,9 @@ class SW_DLLPUBLIC SwOLENode: public SwNoTxtNode friend class SwNodes; mutable SwOLEObj aOLEObj; Graphic* pGraphic; - String sChartTblName; // with chart objects: name of referenced table. - sal_Bool bOLESizeInvalid; // Should be considered at SwDoc::PrtOLENotify - // (e.g. copied). Is not persistent. + String sChartTblName; ///< with chart objects: name of referenced table. + sal_Bool bOLESizeInvalid; /**< Should be considered at SwDoc::PrtOLENotify + (e.g. copied). Is not persistent. */ SwEmbedObjectLink* mpObjectLink; String maLinkURL; @@ -102,7 +102,7 @@ class SW_DLLPUBLIC SwOLENode: public SwNoTxtNode SwGrfFmtColl *pGrfColl, SwAttrSet* pAutoAttr = 0 ); - // aOLEObj has a private Copy-Ctor. We need one too: + /// aOLEObj has a private Copy-Ctor. We need one too: SwOLENode( const SwOLENode & ); using SwNoTxtNode::GetGraphic; @@ -114,7 +114,7 @@ public: virtual SwCntntNode *SplitCntntNode( const SwPosition & ); - // Is in ndcopy.cxx. + /// Is in ndcopy.cxx. virtual SwCntntNode* MakeCopy( SwDoc*, const SwNodeIndex& ) const; virtual Size GetTwipSize() const; @@ -135,8 +135,8 @@ public: sal_Int64 GetAspect() const { return aOLEObj.GetObject().GetViewAspect(); } void SetAspect( sal_Int64 nAspect) { aOLEObj.GetObject().SetViewAspect( nAspect ); } - // Remove OLE-object from "memory". - // inline void Unload() { aOLEObj.Unload(); } + /** Remove OLE-object from "memory". + inline void Unload() { aOLEObj.Unload(); } */ String GetDescription() const { return aOLEObj.GetDescription(); } sal_Bool UpdateLinkURL_Impl(); @@ -156,7 +156,7 @@ public: }; -// Inline methods from Node.hxx +/// Inline methods from Node.hxx inline SwOLENode *SwNode::GetOLENode() { return ND_OLENODE == nNodeType ? (SwOLENode*)this : 0; |