diff options
author | tsepez <tsepez@chromium.org> | 2016-05-20 16:53:07 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-20 16:53:07 -0700 |
commit | f0a128283aeaeb75ee2f62d0f25ba42ac5b07073 (patch) | |
tree | 6f5e89afb22b89211b0eb9e2035190e09f5b13d9 /xfa/fwl/basewidget/fxmath_barcodeimp.cpp | |
parent | 76852be59cbfdb22901b37bb8579d19c07af7037 (diff) | |
download | pdfium-f0a128283aeaeb75ee2f62d0f25ba42ac5b07073.tar.xz |
Remove Release() from CFX_Barcode
Review-Url: https://codereview.chromium.org/2000883002
Diffstat (limited to 'xfa/fwl/basewidget/fxmath_barcodeimp.cpp')
-rw-r--r-- | xfa/fwl/basewidget/fxmath_barcodeimp.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/xfa/fwl/basewidget/fxmath_barcodeimp.cpp b/xfa/fwl/basewidget/fxmath_barcodeimp.cpp index a67952caa6..1dc8afbaef 100644 --- a/xfa/fwl/basewidget/fxmath_barcodeimp.cpp +++ b/xfa/fwl/basewidget/fxmath_barcodeimp.cpp @@ -58,9 +58,6 @@ FX_BOOL CFX_Barcode::Create(BC_TYPE type) { m_pBCEngine = FX_Barcode_CreateBarCodeEngineObject(type); return m_pBCEngine != NULL; } -void CFX_Barcode::Release() { - delete this; -} BC_TYPE CFX_Barcode::GetType() { return m_pBCEngine ? m_pBCEngine->GetType() : BC_UNKNOWN; } |