diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-11-18 15:55:21 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-11-18 15:55:21 -0800 |
commit | 3fc8c688374fc8f34f4b02debc5888e2775df91b (patch) | |
tree | 7aae7dd9c916fb906ea3c495d9a8ad96f927b81f /xfa/include/fwl/basewidget/fwl_picturebox.h | |
parent | 30035f410d7f533a53d669d73aaf03ae9ae27752 (diff) | |
download | pdfium-3fc8c688374fc8f34f4b02debc5888e2775df91b.tar.xz |
Make IFWL_Target::m_pImpl a private member.
Remove pointless subclass dtors since CFWL_TargetImpl
has a virtual dtor, and can be deleted by the base
class.
Kept pointless subclass ctors for the moment to hopefully
combine with Initialize someday, though they need not do
anything since the base class ctor nulls out m_pImpl.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1460883002 .
Diffstat (limited to 'xfa/include/fwl/basewidget/fwl_picturebox.h')
-rw-r--r-- | xfa/include/fwl/basewidget/fwl_picturebox.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xfa/include/fwl/basewidget/fwl_picturebox.h b/xfa/include/fwl/basewidget/fwl_picturebox.h index caa7fce335..76389f65d2 100644 --- a/xfa/include/fwl/basewidget/fwl_picturebox.h +++ b/xfa/include/fwl/basewidget/fwl_picturebox.h @@ -50,6 +50,5 @@ class IFWL_PictureBox : public IFWL_Widget { protected:
IFWL_PictureBox();
- virtual ~IFWL_PictureBox();
};
#endif
|