diff options
author | thestig <thestig@chromium.org> | 2016-09-28 17:04:51 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-28 17:04:51 -0700 |
commit | d4c34f208aa3b76c5941395823c6dcf6bb7e2f34 (patch) | |
tree | b0d73710639ddfe2fff5578e7cd6b761cd4052ed /fpdfsdk/pdfwindow/PWL_Wnd.cpp | |
parent | 5ef75ba52b1ce6024d6aa43b03e25824a04b469b (diff) | |
download | pdfium-d4c34f208aa3b76c5941395823c6dcf6bb7e2f34.tar.xz |
Replace std::unique_ptr.reset() with WrapUnique assignment.
fpdfsdk/ edition.
Review-Url: https://codereview.chromium.org/2381723002
Diffstat (limited to 'fpdfsdk/pdfwindow/PWL_Wnd.cpp')
-rw-r--r-- | fpdfsdk/pdfwindow/PWL_Wnd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/pdfwindow/PWL_Wnd.cpp b/fpdfsdk/pdfwindow/PWL_Wnd.cpp index adda0bbbc9..207157db7e 100644 --- a/fpdfsdk/pdfwindow/PWL_Wnd.cpp +++ b/fpdfsdk/pdfwindow/PWL_Wnd.cpp @@ -86,7 +86,7 @@ CPWL_TimerHandler::~CPWL_TimerHandler() {} void CPWL_TimerHandler::BeginTimer(int32_t nElapse) { if (!m_pTimer) - m_pTimer.reset(new CPWL_Timer(this, GetSystemHandler())); + m_pTimer = WrapUnique(new CPWL_Timer(this, GetSystemHandler())); if (m_pTimer) m_pTimer->SetPWLTimer(nElapse); |