diff options
author | Andrey Turkin <andrey.turkin@gmail.com> | 2011-02-08 22:39:41 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2011-02-08 22:43:18 -0500 |
commit | 041cfeb31a0cf186529ecbe6da382ef2b42f4838 (patch) | |
tree | 919a3618ba5e09ccce1b8de7a2852ab68da30478 /sw/inc/undobj.hxx | |
parent | 4ae1f10baaf4c729934bd9566b846e6f4a2c6770 (diff) |
Get rid of SvBytes/SvSvULongs in SwUndoDelNum.
Diffstat (limited to 'sw/inc/undobj.hxx')
-rw-r--r-- | sw/inc/undobj.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx index 8e886118e251..4563f4b1205e 100644 --- a/sw/inc/undobj.hxx +++ b/sw/inc/undobj.hxx @@ -1371,8 +1371,8 @@ public: class SwUndoDelNum : public SwUndo, private SwUndRng { - SvULongs aNodeIdx; - SvBytes aLevels; + typedef std::vector< std::pair< ULONG, int > > SvNode; + SvNode aNodes; SvBools aRstLRSpaces; SwHistory* pHistory; public: |