summaryrefslogtreecommitdiff
path: root/sw/inc/redline.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-09-11 10:21:51 +0000
committerKurt Zenker <kz@openoffice.org>2009-09-11 10:21:51 +0000
commit5f4f7fb1531ed52fa9cda9be690ecca162c3fb19 (patch)
tree38e926e827df018a94479fc5ded7bdd69aa97acc /sw/inc/redline.hxx
parentdf78782330c6cd207d0a0768275fc8bee3caced0 (diff)
CWS-TOOLING: integrate CWS notes10
2009-08-24 07:25:57 +0200 mod r275287 : 2009-07-26 02:38:32 +0200 mod r274343 : #i#i103645# 2009-07-26 02:01:53 +0200 mod r274342 : #i103645# 2009-07-26 01:52:42 +0200 mod r274341 : #i103490# 2009-07-22 08:31:48 +0200 mod r274215 : #i103373# 2009-07-15 00:55:11 +0200 mod r273987 : #i101419# 2009-07-14 07:07:55 +0200 mod r273956 : #i101419# 2009-07-14 07:07:43 +0200 mod r273955 : #i101419# 2009-07-14 07:02:10 +0200 mod r273954 : changes from notes9 2009-07-14 06:14:25 +0200 mod r273953 : #i103476#
Diffstat (limited to 'sw/inc/redline.hxx')
-rw-r--r--sw/inc/redline.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx
index 871c9f477f9a..ebf6e8cd9325 100644
--- a/sw/inc/redline.hxx
+++ b/sw/inc/redline.hxx
@@ -42,6 +42,7 @@
#include <svtools/smplhint.hxx>
class SfxItemSet;
+class SwView;
class SwRedlineExtraData
{
@@ -297,16 +298,19 @@ class SW_DLLPUBLIC SwRedlineHint : public SfxHint
const SwRedline* pRedline;
sal_Int16 nWhich;
+ const SwView* pView;
public:
- SwRedlineHint( const SwRedline* p, sal_Int16 n )
+ SwRedlineHint( const SwRedline* p, sal_Int16 n, const SwView* pV = 0)
: pRedline(p)
, nWhich(n)
- {}
+ , pView(pV)
+ {}
TYPEINFO();
const SwRedline* GetRedline() const { return pRedline; }
sal_Int16 Which() const { return nWhich; }
+ const SwView* GetView() const { return pView; }
};