| Index: fpdfsdk/src/fsdk_annothandler.cpp
|
| diff --git a/fpdfsdk/src/fsdk_annothandler.cpp b/fpdfsdk/src/fsdk_annothandler.cpp
|
| index feaee744283487454029c70864fa85b374cf95ad..a8dff91fd2641733a77d8f8c776cf2ff4874daf0 100644
|
| --- a/fpdfsdk/src/fsdk_annothandler.cpp
|
| +++ b/fpdfsdk/src/fsdk_annothandler.cpp
|
| @@ -205,10 +205,8 @@ void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseEnter(CPDFSDK_PageView* pPageView,
|
| FX_DWORD nFlag) {
|
| ASSERT(pAnnot);
|
|
|
| - if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot)) {
|
| + if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot))
|
| pAnnotHandler->OnMouseEnter(pPageView, pAnnot, nFlag);
|
| - }
|
| - return;
|
| }
|
|
|
| void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseExit(CPDFSDK_PageView* pPageView,
|
| @@ -216,10 +214,8 @@ void CPDFSDK_AnnotHandlerMgr::Annot_OnMouseExit(CPDFSDK_PageView* pPageView,
|
| FX_DWORD nFlag) {
|
| ASSERT(pAnnot);
|
|
|
| - if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot)) {
|
| + if (IPDFSDK_AnnotHandler* pAnnotHandler = GetAnnotHandler(pAnnot))
|
| pAnnotHandler->OnMouseExit(pPageView, pAnnot, nFlag);
|
| - }
|
| - return;
|
| }
|
|
|
| FX_BOOL CPDFSDK_AnnotHandlerMgr::Annot_OnChar(CPDFSDK_Annot* pAnnot,
|
|
|