summaryrefslogtreecommitdiff
path: root/sd/source/ui/inc/View.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/inc/View.hxx')
-rw-r--r--sd/source/ui/inc/View.hxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/sd/source/ui/inc/View.hxx b/sd/source/ui/inc/View.hxx
index da4098d5f5f3..672342b08487 100644
--- a/sd/source/ui/inc/View.hxx
+++ b/sd/source/ui/inc/View.hxx
@@ -115,9 +115,9 @@ public:
void UpdateSelectionClipboard( bool bForceDeselect );
- inline DrawDocShell* GetDocSh(void) const;
+ inline DrawDocShell* GetDocSh(void) const { return mpDocSh; }
inline SdDrawDocument& GetDoc(void) const;
- inline ViewShell* GetViewShell(void) const;
+ inline ViewShell* GetViewShell(void) const { return mpViewSh; }
virtual bool SdrBeginTextEdit(SdrObject* pObj, SdrPageView* pPV = 0L, ::Window* pWin = 0L, bool bIsNewObj = false,
SdrOutliner* pGivenOutliner = 0L, OutlinerView* pGivenOutlinerView = 0L,
@@ -275,20 +275,11 @@ private:
};
-DrawDocShell* View::GetDocSh (void) const
-{
- return mpDocSh;
-}
SdDrawDocument& View::GetDoc (void) const
{
return mrDoc;
}
-ViewShell* View::GetViewShell (void) const
-{
- return mpViewSh;
-}
-
} // end of namespace sd
#endif