From 17dd2662ccfa9d04efbea74e5d7548db5b2126d4 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 7 Jan 2019 13:52:59 +0200 Subject: convert "*xxx.get()" to "*xxx" Change-Id: Ic307226591ff9702957ccdec486ccf70357eb6d9 Reviewed-on: https://gerrit.libreoffice.org/65951 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svtools/filectrl.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/svtools/filectrl.hxx') 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; -- cgit