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

Side by Side Diff: fpdfsdk/include/fsdk_baseannot.h

Issue 478353002: Fix tzHour usage on systems where char is unsigned. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: better Created 6 years, 4 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 | « no previous file | no next file » | 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 #ifndef _FSDK_BASEANNOT_H_ 7 #ifndef _FSDK_BASEANNOT_H_
8 #define _FSDK_BASEANNOT_H_ 8 #define _FSDK_BASEANNOT_H_
9 9
10 #if _FX_OS_ == _FX_ANDROID_ 10 #if _FX_OS_ == _FX_ANDROID_
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 void ResetDateTime(); 46 void ResetDateTime();
47 47
48 struct FX_DATETIME 48 struct FX_DATETIME
49 { 49 {
50 FX_SHORT year; 50 FX_SHORT year;
51 FX_BYTE month; 51 FX_BYTE month;
52 FX_BYTE day; 52 FX_BYTE day;
53 FX_BYTE hour; 53 FX_BYTE hour;
54 FX_BYTE minute; 54 FX_BYTE minute;
55 FX_BYTE second; 55 FX_BYTE second;
56 » » FX_CHAR»» tzHour; 56 » » FX_INT8 » tzHour;
57 FX_BYTE tzMinute; 57 FX_BYTE tzMinute;
58 }dt; 58 }dt;
59 }; 59 };
60 60
61 class CPDFSDK_Annot 61 class CPDFSDK_Annot
62 { 62 {
63 public: 63 public:
64 CPDFSDK_Annot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView); 64 CPDFSDK_Annot(CPDF_Annot* pAnnot, CPDFSDK_PageView* pPageView);
65 virtual ~CPDFSDK_Annot(); 65 virtual ~CPDFSDK_Annot();
66 public: 66 public:
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 CPDFSDK_PageView* m_pPageView; 176 CPDFSDK_PageView* m_pPageView;
177 FX_BOOL m_bSelected; 177 FX_BOOL m_bSelected;
178 int m_nTabOrder; 178 int m_nTabOrder;
179 179
180 }; 180 };
181 181
182 182
183 183
184 #endif 184 #endif
185 185
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698