From 38772e9f7456021df78eaea3258c63e8c39cf309 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 4 Oct 2018 18:41:22 +0000 Subject: Remove more uncalled methods in core/ Change-Id: I10679c9d28eb495c6bc21fd1355cb3ef330a1209 Reviewed-on: https://pdfium-review.googlesource.com/c/43471 Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- core/fxge/cfx_cliprgn.cpp | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'core/fxge/cfx_cliprgn.cpp') diff --git a/core/fxge/cfx_cliprgn.cpp b/core/fxge/cfx_cliprgn.cpp index 9569ee909c..8a3f946026 100644 --- a/core/fxge/cfx_cliprgn.cpp +++ b/core/fxge/cfx_cliprgn.cpp @@ -14,19 +14,9 @@ CFX_ClipRgn::CFX_ClipRgn(int width, int height) : m_Type(RectI), m_Box(0, 0, width, height) {} -CFX_ClipRgn::CFX_ClipRgn(const CFX_ClipRgn& src) { - m_Type = src.m_Type; - m_Box = src.m_Box; - m_Mask = src.m_Mask; -} - -CFX_ClipRgn::~CFX_ClipRgn() {} +CFX_ClipRgn::CFX_ClipRgn(const CFX_ClipRgn& src) = default; -void CFX_ClipRgn::Reset(const FX_RECT& rect) { - m_Type = RectI; - m_Box = rect; - m_Mask = nullptr; -} +CFX_ClipRgn::~CFX_ClipRgn() = default; void CFX_ClipRgn::IntersectRect(const FX_RECT& rect) { if (m_Type == RectI) { -- cgit v1.2.3