diff options
author | Lei Zhang <thestig@chromium.org> | 2016-01-08 14:57:48 -0800 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2016-01-08 14:57:48 -0800 |
commit | b8e1ab27372cdb5d8c83e57e004032f0d72715db (patch) | |
tree | 718888980718f0b0f5e8d283f91713bdb0712c70 /fpdfsdk/src/pdfwindow | |
parent | 111d8db83ac04d15bd8d879e7dad4651ee8e27e9 (diff) | |
download | pdfium-b8e1ab27372cdb5d8c83e57e004032f0d72715db.tar.xz |
Merge to XFA: Remove a bunch of dead code.
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1567333003 .
(cherry picked from commit 4a24ad858484ecdf9b49481e63060e4d476cf1c7)
Review URL: https://codereview.chromium.org/1569783007 .
Diffstat (limited to 'fpdfsdk/src/pdfwindow')
-rw-r--r-- | fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp | 4 | ||||
-rw-r--r-- | fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp index f5f3a7873c..7582ae412b 100644 --- a/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp +++ b/fpdfsdk/src/pdfwindow/PWL_ComboBox.cpp @@ -637,10 +637,6 @@ void CPWL_ComboBox::SetSelectText() { m_nSelectItem = m_pList->GetCurSel(); } -FX_BOOL CPWL_ComboBox::IsModified() const { - return m_pEdit->IsModified(); -} - void CPWL_ComboBox::SetFillerNotify(IPWL_Filler_Notify* pNotify) { m_pFillerNotify = pNotify; diff --git a/fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp b/fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp index e54810e0ce..c505c7e780 100644 --- a/fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp +++ b/fpdfsdk/src/pdfwindow/PWL_EditCtrl.cpp @@ -383,10 +383,6 @@ void CPWL_EditCtrl::SetCaret(FX_BOOL bVisible, } } -FX_BOOL CPWL_EditCtrl::IsModified() const { - return m_pEdit->IsModified(); -} - CFX_WideString CPWL_EditCtrl::GetText() const { return m_pEdit->GetText(); } |