summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlnum.hxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-08-14 16:05:11 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-08-14 16:05:11 +0000
commit71db36fc7037a4658462bee5c2719f30fde9d018 (patch)
tree68e7bd967174aaa88e23462ac1b8ad1effe869a5 /sw/source/filter/html/htmlnum.hxx
parent1b91c4a4b087190abe30dbf6e850f88981057a85 (diff)
INTEGRATION: CWS writercorehandoff (1.1.1.1.1324); FILE MERGED
2005/09/13 15:17:20 tra 1.1.1.1.1324.2: RESYNC: (1.1.1.1-1.2); FILE MERGED 2005/06/07 14:14:52 fme 1.1.1.1.1324.1: #i50348# General cleanup - removed unused header files, functions, members, declarations etc.
Diffstat (limited to 'sw/source/filter/html/htmlnum.hxx')
-rw-r--r--sw/source/filter/html/htmlnum.hxx26
1 files changed, 2 insertions, 24 deletions
diff --git a/sw/source/filter/html/htmlnum.hxx b/sw/source/filter/html/htmlnum.hxx
index df8059dfdf65..ca9467bb5353 100644
--- a/sw/source/filter/html/htmlnum.hxx
+++ b/sw/source/filter/html/htmlnum.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: htmlnum.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2005-09-09 05:45:05 $
+ * last change: $Author: hr $ $Date: 2006-08-14 17:05:11 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -32,7 +32,6 @@
* MA 02111-1307 USA
*
************************************************************************/
-
#ifndef _HTMLNUM_HXX
#define _HTMLNUM_HXX
@@ -54,10 +53,6 @@ class SwHTMLNumRuleInfo
sal_uInt16 nDeep; // aktuelle Num-Tiefe (1, 2, 3, ...)
sal_Bool bRestart : 1; // Export: Numerierung neu starten
sal_Bool bNumbered : 1; // Export: Absatz ist numeriert
-#ifndef NUM_RELSPACE
- sal_Bool bUpdateWholeNum : 1; // Import: Muss die NumRule
- // vollstaendig aktualisiert werden
-#endif
public:
@@ -66,9 +61,6 @@ public:
SwHTMLNumRuleInfo() :
pNumRule( 0 ), nDeep( 0 ),
-#ifndef NUM_RELSPACE
- bUpdateWholeNum( sal_False ),
-#endif
bRestart( sal_False ), bNumbered( sal_False )
{
memset( &aNumStarts, 0xff, sizeof( aNumStarts ) );
@@ -76,9 +68,6 @@ public:
SwHTMLNumRuleInfo( const SwHTMLNumRuleInfo& rInf ) :
pNumRule( rInf.pNumRule ), nDeep( rInf.nDeep ),
-#ifndef NUM_RELSPACE
- bUpdateWholeNum( rInf.bUpdateWholeNum ),
-#endif
bRestart( rInf.bRestart ), bNumbered( rInf.bNumbered )
{
memcpy( &aNumStarts, &rInf.aNumStarts, sizeof( aNumStarts ) );
@@ -99,11 +88,6 @@ public:
sal_uInt16 DecDepth() { return nDeep==0 ? 0 : --nDeep; }
inline sal_uInt8 GetLevel() const;
-#ifndef NUM_RELSPACE
- void SetUpdateWholeNum( sal_Bool bSet ) { bUpdateWholeNum = bSet; }
- sal_Bool IsUpdateWholeNum() const { return bUpdateWholeNum; }
-#endif
-
void SetRestart( sal_Bool bSet ) { bRestart = bSet; }
sal_Bool IsRestart() const { return bRestart; }
@@ -125,9 +109,6 @@ inline void SwHTMLNumRuleInfo::Set( const SwHTMLNumRuleInfo& rInf )
{
pNumRule = rInf.pNumRule;
nDeep = rInf.nDeep;
-#ifndef NUM_RELSPACE
- bUpdateWholeNum = rInf.bUpdateWholeNum;
-#endif
bRestart = rInf.bRestart;
bNumbered = rInf.bNumbered;
memcpy( &aNumStarts, &rInf.aNumStarts, sizeof( aNumStarts ) );
@@ -137,9 +118,6 @@ inline void SwHTMLNumRuleInfo::Clear()
{
pNumRule = 0;
nDeep = 0;
-#ifndef NUM_RELSPACE
- bUpdateWholeNum = sal_False;
-#endif
bRestart = bNumbered = sal_False;
memset( &aNumStarts, 0xff, sizeof( aNumStarts ) );
}