diff options
author | Lei Zhang <thestig@chromium.org> | 2015-12-22 17:20:31 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-12-22 17:20:31 -0800 |
commit | ae6c84307e7db98564617fb90221ab339f4ca3f1 (patch) | |
tree | b3544446b5e1d2c886883a89e483237bb247bef6 /fpdfsdk/include | |
parent | 9ba6a147311eacb933c175168de6d11c439985d3 (diff) | |
download | pdfium-ae6c84307e7db98564617fb90221ab339f4ca3f1.tar.xz |
Merge to XFA: Cleanup: Remove some dead code in CPWL_Note.
TBR=ochang@chromium.org
Review URL: https://codereview.chromium.org/1544953002 .
(cherry picked from commit cd0ade6f77b1a3e7c340a05bc6cb448f52e9bb96)
Review URL: https://codereview.chromium.org/1547843003 .
Diffstat (limited to 'fpdfsdk/include')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_Note.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_Note.h b/fpdfsdk/include/pdfwindow/PWL_Note.h index 0edb1e3437..9946f4473d 100644 --- a/fpdfsdk/include/pdfwindow/PWL_Note.h +++ b/fpdfsdk/include/pdfwindow/PWL_Note.h @@ -307,12 +307,6 @@ class CPWL_Note : public CPWL_NoteItem { CFX_WideString GetReplyString() const; void SetReplyString(const CFX_WideString& string); - // 0-normal / 1-caption / 2-leftbottom corner / 3-rightbottom corner / 4-close - // / 5-options - int32_t NoteHitTest(const CPDF_Point& point) const; - CPDF_Rect GetCaptionRect() const { return m_rcCaption; } - IPopup_Note* GetPopupNote() const { return m_pPopupNote; } - // CPWL_NoteItem void SetSubjectName(const CFX_WideString& sName) override; void SetAuthorName(const CFX_WideString& sName) override; @@ -350,9 +344,7 @@ class CPWL_Note : public CPWL_NoteItem { IPWL_NoteNotify* m_pNoteNotify; FX_BOOL m_bResizing; PWL_SCROLL_INFO m_OldScrollInfo; - CPDF_Rect m_rcCaption; - FX_BOOL m_bEnalbleNotify; - IPopup_Note* m_pPopupNote; + FX_BOOL m_bEnableNotify; CFX_WideString m_sReplyString; }; |