summaryrefslogtreecommitdiff
path: root/include/svtools/filectrl.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-01-07 13:52:59 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-01-08 10:38:35 +0100
commit17dd2662ccfa9d04efbea74e5d7548db5b2126d4 (patch)
tree37c0de883c43a57f54b0a483437da9de3bf4c941 /include/svtools/filectrl.hxx
parent638be04c8334e5e29f9258ff870fbe63603ce7e0 (diff)
convert "*xxx.get()" to "*xxx"
Change-Id: Ic307226591ff9702957ccdec486ccf70357eb6d9 Reviewed-on: https://gerrit.libreoffice.org/65951 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svtools/filectrl.hxx')
-rw-r--r--include/svtools/filectrl.hxx4
1 files changed, 2 insertions, 2 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;