diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-09-23 08:36:14 +0900 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-09-23 09:18:41 +0200 |
commit | ab34e1a34bdb586e657025878a757516d0d143b7 (patch) | |
tree | a4ade4d39524f872a4dae6d500daefd62c84035e | |
parent | ee6bdeec8d618f039e72d496dff44beb5b99abb2 (diff) |
vcl: Drop a couple of unused member variables
Its usage was gone at df6ba2adbaeea9c5abe6e3ea0a583ec78ca9e7bd.
Change-Id: Ia153cb8fb9247818684be09a81ac5eabdb1120e4
Reviewed-on: https://gerrit.libreoffice.org/42682
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | vcl/inc/brdwin.hxx | 2 | ||||
-rw-r--r-- | vcl/source/window/brdwin.cxx | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/vcl/inc/brdwin.hxx b/vcl/inc/brdwin.hxx index 9c88da7d0631..36292b21e963 100644 --- a/vcl/inc/brdwin.hxx +++ b/vcl/inc/brdwin.hxx @@ -269,8 +269,6 @@ public: class ImplStdBorderWindowView : public ImplBorderWindowView { ImplBorderFrameData maFrameData; - VclPtr<VirtualDevice> mpATitleVirDev; - VclPtr<VirtualDevice> mpDTitleVirDev; public: ImplStdBorderWindowView( ImplBorderWindow* pBorderWindow ); diff --git a/vcl/source/window/brdwin.cxx b/vcl/source/window/brdwin.cxx index ef11bca638a1..c929d0be35f8 100644 --- a/vcl/source/window/brdwin.cxx +++ b/vcl/source/window/brdwin.cxx @@ -753,15 +753,10 @@ ImplStdBorderWindowView::ImplStdBorderWindowView( ImplBorderWindow* pBorderWindo maFrameData.mnHideState = DrawButtonFlags::NONE; maFrameData.mnHelpState = DrawButtonFlags::NONE; maFrameData.mbTitleClipped = false; - - mpATitleVirDev = nullptr; - mpDTitleVirDev = nullptr; } ImplStdBorderWindowView::~ImplStdBorderWindowView() { - mpATitleVirDev.disposeAndClear(); - mpDTitleVirDev.disposeAndClear(); } bool ImplStdBorderWindowView::MouseMove( const MouseEvent& rMEvt ) |