summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-07-12 13:40:22 +0000
committerRüdiger Timm <rt@openoffice.org>2004-07-12 13:40:22 +0000
commitc0f8dc4e4f76f8cbfefdd68947e8916dc13e9085 (patch)
treeca81787a30612c223b92e1f1807e7e7d502c95b8 /svx/source
parentc5785ca64685af182043c390cda6bf8b02f0d99d (diff)
INTEGRATION: CWS aw013 (1.4.68); FILE MERGED
2004/06/11 16:10:24 aw 1.4.68.1: #114389#, #114394#
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/sdr/contact/viewcontact.cxx19
1 files changed, 17 insertions, 2 deletions
diff --git a/svx/source/sdr/contact/viewcontact.cxx b/svx/source/sdr/contact/viewcontact.cxx
index 2d367bba5aca..b69d97d40a8a 100644
--- a/svx/source/sdr/contact/viewcontact.cxx
+++ b/svx/source/sdr/contact/viewcontact.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: viewcontact.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: hr $ $Date: 2004-05-10 14:30:39 $
+ * last change: $Author: rt $ $Date: 2004-07-12 14:40:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,6 +79,7 @@ namespace sdr
{
ViewContact::ViewContact()
: mpAnimationInfo(0L),
+ mpViewObjectContactRedirector(0L),
mbPaintRectangleValid(sal_False)
{
}
@@ -476,6 +477,20 @@ namespace sdr
return (0L != mpAnimationInfo);
}
+ // access to ViewObjectContactRedirector
+ ViewObjectContactRedirector* ViewContact::GetViewObjectContactRedirector() const
+ {
+ return mpViewObjectContactRedirector;
+ }
+
+ void ViewContact::SetViewObjectContactRedirector(ViewObjectContactRedirector* pNew)
+ {
+ if(mpViewObjectContactRedirector != pNew)
+ {
+ mpViewObjectContactRedirector = pNew;
+ }
+ }
+
// access to SdrObject and/or SdrPage. May return 0L like the default
// implementations do. Needs to be overloaded as needed.
SdrObject* ViewContact::TryToGetSdrObject() const