diff options
author | Carsten Driesner <cd@openoffice.org> | 2011-01-17 15:06:54 +0100 |
---|---|---|
committer | Carsten Driesner <cd@openoffice.org> | 2011-01-17 15:06:54 +0100 |
commit | 7f33ed417b2e29e5470724ea76967f64699a2662 (patch) | |
tree | abfa1432c5ffffe4c7502d4ddcaee918c584c69c /sw/inc/edglbldc.hxx | |
parent | 80731dbfcb48a2ffec30a4b2abe1ba8ada8f0169 (diff) |
removetooltypes01: #i112600# Remove tools types from sw
Diffstat (limited to 'sw/inc/edglbldc.hxx')
-rw-r--r-- | sw/inc/edglbldc.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/edglbldc.hxx b/sw/inc/edglbldc.hxx index dd3187614ec4..23e63a8483d8 100644 --- a/sw/inc/edglbldc.hxx +++ b/sw/inc/edglbldc.hxx @@ -42,14 +42,14 @@ enum GlobalDocContentType { class SwGlblDocContent { GlobalDocContentType eType; - ULONG nDocPos; + sal_uLong nDocPos; union { const SwTOXBase* pTOX; const SwSection* pSect; } PTR; public: - SwGlblDocContent( ULONG nPos ); + SwGlblDocContent( sal_uLong nPos ); SwGlblDocContent( const SwTOXBaseSection* pTOX ); SwGlblDocContent( const SwSection* pSect ); @@ -59,7 +59,7 @@ public: { return GLBLDOC_SECTION == eType ? PTR.pSect : 0; } const SwTOXBase* GetTOX() const { return GLBLDOC_TOXBASE == eType ? PTR.pTOX : 0; } - ULONG GetDocPos() const { return nDocPos; } + sal_uLong GetDocPos() const { return nDocPos; } // fuers Sortieren inline int operator==( const SwGlblDocContent& rCmp ) const |