diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:25:57 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-11-26 13:25:57 +0000 |
commit | 8d9aefca802b5fcfa826e6c8a28afcd6e6c58511 (patch) | |
tree | 96693cc037c18a1b0f89554b969b2dd7602e32d2 | |
parent | ef455f34db56ecd615484df1daff89a25c8ecbbe (diff) |
INTEGRATION: CWS sj12 (1.3.156); FILE MERGED
2004/11/18 15:45:31 sj 1.3.156.1: #i35972# preventing recursive call of objchange for sdrpageobj
-rw-r--r-- | svx/inc/svx/sdr/contact/viewcontactofpageobj.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/inc/svx/sdr/contact/viewcontactofpageobj.hxx b/svx/inc/svx/sdr/contact/viewcontactofpageobj.hxx index afc5e366d8fd..0979e4af11ef 100644 --- a/svx/inc/svx/sdr/contact/viewcontactofpageobj.hxx +++ b/svx/inc/svx/sdr/contact/viewcontactofpageobj.hxx @@ -2,9 +2,9 @@ * * $RCSfile: viewcontactofpageobj.hxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2004-07-13 13:31:40 $ + * last change: $Author: rt $ $Date: 2004-11-26 14:25:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -98,6 +98,9 @@ namespace sdr // page objects. unsigned mbIsPainting : 1; + // #i35972# flag to avoid recursive ActionChange events + unsigned mbIsInActionChange : 1; + protected: // internal access to SdrObject SdrPageObj& GetPageObj() const @@ -172,6 +175,9 @@ namespace sdr virtual sal_Bool PaintObject( DisplayInfo& rDisplayInfo, Rectangle& rPaintRectangle, const ViewObjectContact& rAssociatedVOC); + + // #WIP# React on changes of the object of this ViewContact + virtual void ActionChanged(); }; } // end of namespace contact } // end of namespace sdr |