summaryrefslogtreecommitdiff
path: root/include/svx/sdr
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/sdr')
-rw-r--r--include/svx/sdr/animation/scheduler.hxx8
-rw-r--r--include/svx/sdr/contact/objectcontact.hxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/svx/sdr/animation/scheduler.hxx b/include/svx/sdr/animation/scheduler.hxx
index 4a7b177e1cd0..9e3a33dd2dcb 100644
--- a/include/svx/sdr/animation/scheduler.hxx
+++ b/include/svx/sdr/animation/scheduler.hxx
@@ -45,11 +45,11 @@ namespace sdr
SVX_DLLPUBLIC virtual ~Event();
// access to mpNext
- Event* GetNext() const;
+ Event* GetNext() const { return mpNext; }
void SetNext(Event* pNew);
// get/set time
- sal_uInt32 GetTime() const;
+ sal_uInt32 GetTime() const { return mnTime; }
void SVX_DLLPUBLIC SetTime(sal_uInt32 nNew);
// execute event
@@ -83,7 +83,7 @@ namespace sdr
void Clear();
// get first
- Event* GetFirst();
+ Event* GetFirst() { return mpHead; }
};
} // end of namespace animation
} // end of namespace sdr
@@ -119,7 +119,7 @@ namespace sdr
SVX_DLLPUBLIC virtual void Timeout() SAL_OVERRIDE;
// get time
- sal_uInt32 GetTime();
+ sal_uInt32 GetTime() { return mnTime; }
// #i38135#
void SetTime(sal_uInt32 nTime);
diff --git a/include/svx/sdr/contact/objectcontact.hxx b/include/svx/sdr/contact/objectcontact.hxx
index fd48a475d32e..b94e5a97d3be 100644
--- a/include/svx/sdr/contact/objectcontact.hxx
+++ b/include/svx/sdr/contact/objectcontact.hxx
@@ -161,7 +161,7 @@ namespace sdr
virtual bool IsAsynchronGraphicsLoadingAllowed() const;
// access to ViewObjectContactRedirector
- ViewObjectContactRedirector* GetViewObjectContactRedirector() const;
+ ViewObjectContactRedirector* GetViewObjectContactRedirector() const { return mpViewObjectContactRedirector; }
void SetViewObjectContactRedirector(ViewObjectContactRedirector* pNew);
// check if buffering of MasterPages is allowed. Default is sal_False.