diff options
author | Lei Zhang <thestig@chromium.org> | 2016-02-25 14:42:01 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-02-25 14:42:01 -0800 |
commit | 104fa7c879398c67cdaab3f7064ca9f6da07b072 (patch) | |
tree | 0b7dd72f5b37c8e275e15e53a19742155c5e1df6 /fpdfsdk/include | |
parent | f8e21f34e9b67c5b9e754e949c58a5113ea4d746 (diff) | |
download | pdfium-104fa7c879398c67cdaab3f7064ca9f6da07b072.tar.xz |
Fix static initializers.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1725303003 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/fpdfxfa/fpdfxfa_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/fpdfxfa/fpdfxfa_util.h b/fpdfsdk/include/fpdfxfa/fpdfxfa_util.h index 9678453db6..af69812471 100644 --- a/fpdfsdk/include/fpdfxfa/fpdfxfa_util.h +++ b/fpdfsdk/include/fpdfxfa/fpdfxfa_util.h @@ -31,7 +31,7 @@ class CXFA_FWLAdapterTimerMgr : public IFWL_AdapterTimerMgr { protected: static void TimerProc(int32_t idEvent); - static std::vector<CFWL_TimerInfo*> s_TimerArray; + static std::vector<CFWL_TimerInfo*>* s_TimerArray; CPDFDoc_Environment* const m_pEnv; }; |