summaryrefslogtreecommitdiff
path: root/sw/inc/dbfld.hxx
diff options
context:
space:
mode:
authorAbdulmajeed Al-Abaulrazzaq <aalabdulrazzaq@kacst.edu.sa>2012-08-01 16:10:20 +0300
committerPhilipp Riemer <ruderphilipp@gmail.com>2012-08-01 15:41:41 +0200
commitc9d5c88a96c491b6557b4e91d69e78f9a57ee0f6 (patch)
tree2a2e4f208ed14a9969aa067db33ea2495461984e /sw/inc/dbfld.hxx
parent6657052e463b4ff9c8a005faadcf2289d32343a3 (diff)
Modifying comments to meet doxygen standards
Change-Id: If7c4162a49a7c7b612b6f480f6fbba75727ae1df
Diffstat (limited to 'sw/inc/dbfld.hxx')
-rw-r--r--sw/inc/dbfld.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/inc/dbfld.hxx b/sw/inc/dbfld.hxx
index 791ee881d93e..be2d0ba16ec3 100644
--- a/sw/inc/dbfld.hxx
+++ b/sw/inc/dbfld.hxx
@@ -43,7 +43,7 @@ class SwFrm;
class SW_DLLPUBLIC SwDBFieldType : public SwValueFieldType
{
SwDBData aDBData; //
- rtl::OUString sName; // only used in ::GetName() !
+ rtl::OUString sName; ///< only used in ::GetName() !
String sColumn;
long nRefCnt;
@@ -73,7 +73,7 @@ public:
class SW_DLLPUBLIC SwDBField : public SwValueField
{
rtl::OUString aContent;
- rtl::OUString sFieldCode; // contains Word's field code
+ rtl::OUString sFieldCode; ///< contains Word's field code
sal_uInt16 nSubType;
sal_Bool bIsInBodyTxt : 1;
sal_Bool bValidValue : 1;
@@ -88,7 +88,7 @@ public:
virtual SwFieldType* ChgTyp( SwFieldType* );
- // Current text.
+ /// Current text.
inline void SetExpansion(const String& rStr);
virtual sal_uInt16 GetSubType() const;
@@ -96,13 +96,13 @@ public:
virtual String GetFieldName() const;
- // For calculations in expressions.
+ /// For calculations in expressions.
void ChgValue( double d, sal_Bool bVal );
- // Get the evaluation via DBMgr string.
+ /// Get the evaluation via DBMgr string.
void Evaluate();
- // Evaluation for header and footer.
+ /// Evaluation for header and footer.
void ChangeExpansion( const SwFrm*, const SwTxtFld* );
void InitContent();
void InitContent(const String& rExpansion);
@@ -113,14 +113,14 @@ public:
inline void ClearInitialized() { bInitialized = sal_False; }
inline void SetInitialized() { bInitialized = sal_True; }
- // Get name.
+ /// Get name.
virtual const rtl::OUString& GetPar1() const;
- // access to the command string
+ /// access to the command string
const rtl::OUString& GetFieldCode() const { return sFieldCode;}
void SetFieldCode(const rtl::OUString& rStr) { sFieldCode = rStr; }
- // DBName
+ /// DBName
inline const SwDBData& GetDBData() const { return ((SwDBFieldType*)GetTyp())->GetDBData(); }
virtual bool QueryValue( com::sun::star::uno::Any& rVal, sal_uInt16 nWhich ) const;
virtual bool PutValue( const com::sun::star::uno::Any& rVal, sal_uInt16 nWhich );
@@ -129,7 +129,7 @@ public:
inline void SwDBField::SetExpansion(const String& rStr)
{ aContent = rStr; }
-// set from UpdateExpFlds (the Node-Position is known there)
+/// set from UpdateExpFlds (the Node-Position is known there)
inline void SwDBField::ChgBodyTxtFlag( sal_Bool bIsInBody )
{ bIsInBodyTxt = bIsInBody; }
@@ -149,7 +149,7 @@ protected:
SwDBNameInfField(SwFieldType* pTyp, const SwDBData& rDBData, sal_uLong nFmt = 0);
public:
- // DBName
+ /// DBName
inline const SwDBData& GetRealDBData() { return aDBData; }
SwDBData GetDBData(SwDoc* pDoc);