Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1176)

Unified Diff: core/fpdfdoc/cpvt_wordrange.h

Issue 2477443002: Remove FX_BOOL from core (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/fpdfdoc/cpvt_wordplace.h ('k') | core/fpdfdoc/csection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/fpdfdoc/cpvt_wordrange.h
diff --git a/core/fpdfdoc/cpvt_wordrange.h b/core/fpdfdoc/cpvt_wordrange.h
index a92613c6a74a3839c41577dfe9f86cb6bf98d061..b291e50e53b0f04d65b635f43acac3ce071cb0e5 100644
--- a/core/fpdfdoc/cpvt_wordrange.h
+++ b/core/fpdfdoc/cpvt_wordrange.h
@@ -38,9 +38,9 @@ struct CPVT_WordRange {
SwapWordPlace();
}
- FX_BOOL IsExist() const { return BeginPos != EndPos; }
+ bool IsExist() const { return BeginPos != EndPos; }
- FX_BOOL operator!=(const CPVT_WordRange& wr) const {
+ bool operator!=(const CPVT_WordRange& wr) const {
return wr.BeginPos != BeginPos || wr.EndPos != EndPos;
}
« no previous file with comments | « core/fpdfdoc/cpvt_wordplace.h ('k') | core/fpdfdoc/csection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698