Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: xfa/fwl/basewidget/fwl_monthcalendarimp.cpp

Issue 2095653002: Remove NULL in xfa/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/basewidget/fwl_monthcalendarimp.h ('k') | xfa/fwl/basewidget/fwl_pictureboximp.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h" 7 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 10
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 } 228 }
229 ClearDateItem(); 229 ClearDateItem();
230 ReSetDateItem(); 230 ReSetDateItem();
231 LayOut(); 231 LayOut();
232 return FWL_Error::Succeeded; 232 return FWL_Error::Succeeded;
233 } 233 }
234 FWL_Error CFWL_MonthCalendarImp::DrawWidget(CFX_Graphics* pGraphics, 234 FWL_Error CFWL_MonthCalendarImp::DrawWidget(CFX_Graphics* pGraphics,
235 const CFX_Matrix* pMatrix) { 235 const CFX_Matrix* pMatrix) {
236 if (!pGraphics) 236 if (!pGraphics)
237 return FWL_Error::Indefinite; 237 return FWL_Error::Indefinite;
238 if (m_pProperties->m_pThemeProvider == NULL) { 238 if (!m_pProperties->m_pThemeProvider) {
239 m_pProperties->m_pThemeProvider = GetAvailableTheme(); 239 m_pProperties->m_pThemeProvider = GetAvailableTheme();
240 } 240 }
241 IFWL_ThemeProvider* pTheme = m_pProperties->m_pThemeProvider; 241 IFWL_ThemeProvider* pTheme = m_pProperties->m_pThemeProvider;
242 if (HasBorder()) { 242 if (HasBorder()) {
243 DrawBorder(pGraphics, CFWL_Part::Border, pTheme, pMatrix); 243 DrawBorder(pGraphics, CFWL_Part::Border, pTheme, pMatrix);
244 } 244 }
245 if (HasEdge()) { 245 if (HasEdge()) {
246 DrawEdge(pGraphics, CFWL_Part::Edge, pTheme, pMatrix); 246 DrawEdge(pGraphics, CFWL_Part::Edge, pTheme, pMatrix);
247 } 247 }
248 DrawBkground(pGraphics, pTheme, pMatrix); 248 DrawBkground(pGraphics, pTheme, pMatrix);
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 uint32_t dwSt, 1203 uint32_t dwSt,
1204 CFX_RectF rc, 1204 CFX_RectF rc,
1205 CFX_WideString& wsday) 1205 CFX_WideString& wsday)
1206 : iDay(day), 1206 : iDay(day),
1207 iDayOfWeek(dayofweek), 1207 iDayOfWeek(dayofweek),
1208 dwStates(dwSt), 1208 dwStates(dwSt),
1209 rect(rc), 1209 rect(rc),
1210 wsDay(wsday) {} 1210 wsDay(wsday) {}
1211 1211
1212 FWL_DATEINFO::~FWL_DATEINFO() {} 1212 FWL_DATEINFO::~FWL_DATEINFO() {}
OLDNEW
« no previous file with comments | « xfa/fwl/basewidget/fwl_monthcalendarimp.h ('k') | xfa/fwl/basewidget/fwl_pictureboximp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698