diff options
author | Tom Sepez <tsepez@chromium.org> | 2015-07-27 14:38:43 -0700 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2015-07-27 14:38:43 -0700 |
commit | a25b4bca69ab26d174edb8cefbdcfc1a0353915a (patch) | |
tree | 3de2d8bc8f09023c6a0747ed0fd89323c6158e35 /fpdfsdk/include/pdfwindow/PWL_IconList.h | |
parent | fa69033db8803b191fa43f3c5bec65998d2dc2f9 (diff) | |
download | pdfium-a25b4bca69ab26d174edb8cefbdcfc1a0353915a.tar.xz |
Fix FX_BOOL compilation errors under windows
- Bool functions should not return -1 for error.
- Bool variables should not be assigned 2
- Bool / int32_t prototypes should match.
R=thestig@chromium.org
Review URL: https://codereview.chromium.org/1254973004 .
Diffstat (limited to 'fpdfsdk/include/pdfwindow/PWL_IconList.h')
-rw-r--r-- | fpdfsdk/include/pdfwindow/PWL_IconList.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/include/pdfwindow/PWL_IconList.h b/fpdfsdk/include/pdfwindow/PWL_IconList.h index f7e9adda7b..b8bc3d2957 100644 --- a/fpdfsdk/include/pdfwindow/PWL_IconList.h +++ b/fpdfsdk/include/pdfwindow/PWL_IconList.h @@ -87,7 +87,7 @@ private: void SelectItem(int32_t nItemIndex, FX_BOOL bSelect); int32_t FindItemIndex(const CPDF_Point& point); - FX_BOOL m_nSelectIndex; + int32_t m_nSelectIndex; IPWL_IconList_Notify* m_pNotify; FX_BOOL m_bEnableNotify; FX_BOOL m_bMouseDown; |