summaryrefslogtreecommitdiff
path: root/sw/inc/authfld.hxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-08-27 11:53:52 +0000
committerRüdiger Timm <rt@openoffice.org>2008-08-27 11:53:52 +0000
commite98f1cea54c2264ff6a420e852be32ab39644197 (patch)
treef36331e385b8b76a6ec11eed42932f7f2099d21c /sw/inc/authfld.hxx
parent231184f4b042f806a9a3914ae2be45ae6a1ca0ed (diff)
INTEGRATION: CWS c17v004_DEV300 (1.13.60); FILE MERGED
2008/06/12 12:16:33 os 1.13.60.1: #b6699729# prevent resorting of bibliography entries while converting fields to text in mailmerge
Diffstat (limited to 'sw/inc/authfld.hxx')
-rw-r--r--sw/inc/authfld.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/authfld.hxx b/sw/inc/authfld.hxx
index e68dcda95d0c..5170f088d02c 100644
--- a/sw/inc/authfld.hxx
+++ b/sw/inc/authfld.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: authfld.hxx,v $
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
* This file is part of OpenOffice.org.
*
@@ -104,7 +104,7 @@ public:
virtual BOOL PutValue( const com::sun::star::uno::Any& rVal, USHORT nWhichId );
inline void SetDoc(SwDoc* pNewDoc) { m_pDoc = pNewDoc; }
-
+ SwDoc* GetDoc(){ return m_pDoc; }
void RemoveField(long nHandle);
long AddField(const String& rFieldContents);
BOOL AddField(long nHandle);
@@ -167,8 +167,8 @@ public:
--------------------------------------------------*/
class SwAuthorityField : public SwField
{
- long nHandle;
-
+ long m_nHandle;
+ mutable long m_nTempSequencePos;
public:
SwAuthorityField(SwAuthorityFieldType* pType, const String& rFieldContents);
SwAuthorityField(SwAuthorityFieldType* pType, long nHandle);
@@ -184,7 +184,7 @@ public:
virtual BOOL QueryValue( com::sun::star::uno::Any& rVal, USHORT nWhichId ) const;
virtual BOOL PutValue( const com::sun::star::uno::Any& rVal, USHORT nWhichId );
- long GetHandle() const { return nHandle; }
+ long GetHandle() const { return m_nHandle; }
virtual String GetDescription() const;
};