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/fmturl.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/fmturl.hxx')
-rw-r--r-- | sw/inc/fmturl.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/fmturl.hxx b/sw/inc/fmturl.hxx index 667f0f1d8cac..fe9ba12de902 100644 --- a/sw/inc/fmturl.hxx +++ b/sw/inc/fmturl.hxx @@ -40,24 +40,24 @@ class IntlWrapper; class SW_DLLPUBLIC SwFmtURL: public SfxPoolItem { - String sTargetFrameName; // Target frame for URL. - String sURL; // Simple URL. - String sName; // Name of the anchor. - ImageMap *pMap; // ClientSide images. + String sTargetFrameName; ///< Target frame for URL. + String sURL; ///< Simple URL. + String sName; ///< Name of the anchor. + ImageMap *pMap; ///< ClientSide images. - sal_Bool bIsServerMap; // A ServerSideImageMap with the URL. + sal_Bool bIsServerMap; ///< A ServerSideImageMap with the URL. SwFmtURL& operator=( const SwFmtURL& ); public: SwFmtURL(); - // @@@ copy construction allowed, but assigment is not? @@@ + /// @@@ copy construction allowed, but assigment is not? @@@ SwFmtURL( const SwFmtURL& ); virtual ~SwFmtURL(); - // "Pure virtual methods" of SfxPoolItem. + /// "Pure virtual methods" of SfxPoolItem. virtual int operator==( const SfxPoolItem& ) const; virtual SfxPoolItem* Clone( SfxItemPool* pPool = 0 ) const; virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres, @@ -70,7 +70,7 @@ public: void SetTargetFrameName( const String& rStr ) { sTargetFrameName = rStr; } void SetURL( const String &rURL, sal_Bool bServerMap ); - void SetMap( const ImageMap *pM ); // Pointer will be copied. + void SetMap( const ImageMap *pM ); ///< Pointer will be copied. const String &GetTargetFrameName()const { return sTargetFrameName; } const String &GetURL() const { return sURL; } |