| Index: fpdfsdk/fsdk_baseannot.cpp
|
| diff --git a/fpdfsdk/fsdk_baseannot.cpp b/fpdfsdk/fsdk_baseannot.cpp
|
| index 3979c0ff56636b2b54e663d840a430a7e3280cf8..ea4e0607370b1b8f7acc3f99b4167fba8e332b80 100644
|
| --- a/fpdfsdk/fsdk_baseannot.cpp
|
| +++ b/fpdfsdk/fsdk_baseannot.cpp
|
| @@ -622,11 +622,11 @@ FX_SYSTEMTIME CPDFSDK_BAAnnot::GetModifiedDate() const {
|
| return systime;
|
| }
|
|
|
| -void CPDFSDK_BAAnnot::SetFlags(FX_DWORD nFlags) {
|
| +void CPDFSDK_BAAnnot::SetFlags(uint32_t nFlags) {
|
| m_pAnnot->GetAnnotDict()->SetAtInteger("F", nFlags);
|
| }
|
|
|
| -FX_DWORD CPDFSDK_BAAnnot::GetFlags() const {
|
| +uint32_t CPDFSDK_BAAnnot::GetFlags() const {
|
| return m_pAnnot->GetAnnotDict()->GetIntegerBy("F");
|
| }
|
|
|
| @@ -884,7 +884,7 @@ FX_BOOL CPDFSDK_BAAnnot::CreateFormFiller() {
|
| return TRUE;
|
| }
|
| FX_BOOL CPDFSDK_BAAnnot::IsVisible() const {
|
| - FX_DWORD nFlags = GetFlags();
|
| + uint32_t nFlags = GetFlags();
|
| return !((nFlags & ANNOTFLAG_INVISIBLE) || (nFlags & ANNOTFLAG_HIDDEN) ||
|
| (nFlags & ANNOTFLAG_NOVIEW));
|
| }
|
|
|