summaryrefslogtreecommitdiff
path: root/core/src/fpdftext/text_int.h
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-07-27 14:38:43 -0700
committerTom Sepez <tsepez@chromium.org>2015-07-27 14:38:43 -0700
commita25b4bca69ab26d174edb8cefbdcfc1a0353915a (patch)
tree3de2d8bc8f09023c6a0747ed0fd89323c6158e35 /core/src/fpdftext/text_int.h
parentfa69033db8803b191fa43f3c5bec65998d2dc2f9 (diff)
downloadpdfium-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 'core/src/fpdftext/text_int.h')
-rw-r--r--core/src/fpdftext/text_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/fpdftext/text_int.h b/core/src/fpdftext/text_int.h
index ce52371df0..7f15be1b0a 100644
--- a/core/src/fpdftext/text_int.h
+++ b/core/src/fpdftext/text_int.h
@@ -129,7 +129,7 @@ protected:
SEGMENT_Array m_Segment;
CFX_RectArray m_SelRects;
LINEOBJ m_LineObj;
- FX_BOOL m_TextlineDir;
+ int32_t m_TextlineDir;
CFX_FloatRect m_CurlineRect;
};
class CPDF_TextPageFind: public IPDF_TextPageFind