diff options
author | Nico Weber <thakis@chromium.org> | 2014-07-31 10:07:04 -0700 |
---|---|---|
committer | Nico Weber <thakis@chromium.org> | 2014-07-31 10:07:04 -0700 |
commit | 09363c82b5f309631eed3801b3c1cb4195763dd4 (patch) | |
tree | d27fd2a18f284665837c0ba576ac3e9acc4d9e1a /fpdfsdk/src/fxedit | |
parent | c2df91c93d7d2ec4ffb2e0162d6ed865a71a15df (diff) | |
download | pdfium-09363c82b5f309631eed3801b3c1cb4195763dd4.tar.xz |
Fix a few more -Wreorder warnings.
No intended behavior change.
BUG=pdfium:29
R=bo_xu@foxitsoftware.com
Review URL: https://codereview.chromium.org/436483002
Diffstat (limited to 'fpdfsdk/src/fxedit')
-rw-r--r-- | fpdfsdk/src/fxedit/fxet_list.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fpdfsdk/src/fxedit/fxet_list.cpp b/fpdfsdk/src/fxedit/fxet_list.cpp index 63aee1b253..64ed694d12 100644 --- a/fpdfsdk/src/fxedit/fxet_list.cpp +++ b/fpdfsdk/src/fxedit/fxet_list.cpp @@ -119,7 +119,7 @@ CFX_WideString CFX_ListItem::GetText() const /* ------------------------------------ CFX_List --------------------------------- */ -CFX_List::CFX_List() : m_pFontMap(NULL), m_fFontSize(0.0f), m_bMultiple(FALSE) +CFX_List::CFX_List() : m_fFontSize(0.0f), m_pFontMap(NULL), m_bMultiple(FALSE) { } @@ -507,12 +507,12 @@ void CPLST_Select::Done() /* ------------------------------------ CFX_ListCtrl --------------------------------- */ CFX_ListCtrl::CFX_ListCtrl() : m_pNotify(NULL), + m_bNotifyFlag(FALSE), m_ptScrollPos(0.0f,0.0f), m_nSelItem(-1), m_nFootIndex(-1), - m_bCtrlSel(FALSE), - m_nCaretIndex(-1), - m_bNotifyFlag(FALSE) + m_bCtrlSel(FALSE), + m_nCaretIndex(-1) { } |