From ae51c810a44844ef437393c1768be8f7766586b2 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Wed, 5 Aug 2015 12:34:06 -0700 Subject: Kill off last uses of FX_NEW in XFA. It would seem that this never merged completely. R=thestig@chromium.org Review URL: https://codereview.chromium.org/1277583002 . --- xfa/src/fxbarcode/BC_Writer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/src/fxbarcode/BC_Writer.cpp') diff --git a/xfa/src/fxbarcode/BC_Writer.cpp b/xfa/src/fxbarcode/BC_Writer.cpp index 80c3c6978f..e98c6f5537 100644 --- a/xfa/src/fxbarcode/BC_Writer.cpp +++ b/xfa/src/fxbarcode/BC_Writer.cpp @@ -51,7 +51,7 @@ void CBC_Writer::SetBarcodeColor(FX_ARGB foregroundColor) { } CFX_DIBitmap* CBC_Writer::CreateDIBitmap(int32_t width, int32_t height) { CFX_DIBitmap* pDIBitmap = NULL; - pDIBitmap = FX_NEW CFX_DIBitmap; + pDIBitmap = new CFX_DIBitmap; if (pDIBitmap != NULL) { pDIBitmap->Create(width, height, m_colorSpace); } -- cgit v1.2.3