diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-01 14:09:19 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-01 14:09:19 +0000 |
commit | e9c6a56f86c2a8e99c0266f827e0eb5d9b842486 (patch) | |
tree | 76aa382b0ecf036b1956e412a4d6829d96ff8e8a /sw/inc/ndarr.hxx | |
parent | 679a7821cfb9bd7957f2e72194b698e2c6470870 (diff) |
INTEGRATION: CWS swqbf88 (1.13.56); FILE MERGED
2006/10/23 10:15:33 od 1.13.56.2: RESYNC: (1.13-1.14); FILE MERGED
2006/10/17 12:30:35 od 1.13.56.1: #137792# class <SWNodes>, methods <Insert()>
- rename methods and add 3rd optional parameter
Diffstat (limited to 'sw/inc/ndarr.hxx')
-rw-r--r-- | sw/inc/ndarr.hxx | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/sw/inc/ndarr.hxx b/sw/inc/ndarr.hxx index d99d59b608b1..e9bec27e9c7d 100644 --- a/sw/inc/ndarr.hxx +++ b/sw/inc/ndarr.hxx @@ -4,9 +4,9 @@ * * $RCSfile: ndarr.hxx,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: obo $ $Date: 2006-10-13 11:08:01 $ + * last change: $Author: vg $ $Date: 2006-11-01 15:09:19 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -105,8 +105,16 @@ class SwNodes: private BigPtrArray SwNodeIndex* pRoot; // Liste aller Indizies auf Nodes - void Insert( const SwNodePtr pNode, const SwNodeIndex& rPos ); - void Insert( const SwNodePtr pNode, ULONG nPos); + // --> OD 2006-10-16 #137792# + // - rename from <Insert(..)> to <InsertNode(..)> + // - add 3rd optional parameter <bSyncNumberAndNumRule> + void InsertNode( const SwNodePtr pNode, + const SwNodeIndex& rPos, + const bool bSyncNumberAndNumRule = true ); + void InsertNode( const SwNodePtr pNode, + ULONG nPos, + const bool bSyncNumberAndNumRule = true); + // <-- // void Remove( const SwNodeIndex& rPos, USHORT nLen = 1 ); // void Remove( ULONG nPos, USHORT nLen = 1 ); // BOOL Move( const SwIndex & rOldPos, const SwIndex & rNewPos ); |