diff options
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/filectrl.hxx | 4 | ||||
-rw-r--r-- | include/svtools/simptabl.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/filectrl.hxx b/include/svtools/filectrl.hxx index 3e620e2350be..280b76ffd127 100644 --- a/include/svtools/filectrl.hxx +++ b/include/svtools/filectrl.hxx @@ -56,8 +56,8 @@ public: virtual ~FileControl() override; virtual void dispose() override; - Edit& GetEdit() { return *maEdit.get(); } - PushButton& GetButton() { return *maButton.get(); } + Edit& GetEdit() { return *maEdit; } + PushButton& GetButton() { return *maButton; } void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, DrawFlags nFlags ) override; diff --git a/include/svtools/simptabl.hxx b/include/svtools/simptabl.hxx index e4a15e02e8bd..7f999a809623 100644 --- a/include/svtools/simptabl.hxx +++ b/include/svtools/simptabl.hxx @@ -121,7 +121,7 @@ public: void SetCommandHdl( const Link<SvSimpleTable*,void>& rLink ) { aCommandLink = rLink; } void SetHeaderBarClickHdl( const Link<SvSimpleTable*,void>& rLink ) { aHeaderBarClickLink = rLink; } - HeaderBar& GetTheHeaderBar() { return *aHeaderBar.get(); } + HeaderBar& GetTheHeaderBar() { return *aHeaderBar; } }; |