summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/ifwl_barcode.h
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-11-02 15:43:18 -0700
committerCommit bot <commit-bot@chromium.org>2016-11-02 15:43:19 -0700
commitd19e912dd469e4bdad9f3020e1f6eb98f10f3470 (patch)
tree239cb568a80445f14a1ab9b63dcaaddcce67e1cc /xfa/fwl/core/ifwl_barcode.h
parent12f3e4a58f05850b93af35619cb04f0231d86acc (diff)
downloadpdfium-d19e912dd469e4bdad9f3020e1f6eb98f10f3470.tar.xz
Remove FX_BOOL from xfa.
Review-Url: https://codereview.chromium.org/2467203003
Diffstat (limited to 'xfa/fwl/core/ifwl_barcode.h')
-rw-r--r--xfa/fwl/core/ifwl_barcode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fwl/core/ifwl_barcode.h b/xfa/fwl/core/ifwl_barcode.h
index 33cb442e50..36befa469b 100644
--- a/xfa/fwl/core/ifwl_barcode.h
+++ b/xfa/fwl/core/ifwl_barcode.h
@@ -43,15 +43,15 @@ class IFWL_BarcodeDP : public IFWL_EditDP {
virtual int32_t GetModuleHeight() const = 0;
virtual int32_t GetModuleWidth() const = 0;
virtual int32_t GetDataLength() const = 0;
- virtual FX_BOOL GetCalChecksum() const = 0;
- virtual FX_BOOL GetPrintChecksum() const = 0;
+ virtual bool GetCalChecksum() const = 0;
+ virtual bool GetPrintChecksum() const = 0;
virtual BC_TEXT_LOC GetTextLocation() const = 0;
virtual int32_t GetWideNarrowRatio() const = 0;
virtual FX_CHAR GetStartChar() const = 0;
virtual FX_CHAR GetEndChar() const = 0;
virtual int32_t GetVersion() const = 0;
virtual int32_t GetErrorCorrectionLevel() const = 0;
- virtual FX_BOOL GetTruncated() const = 0;
+ virtual bool GetTruncated() const = 0;
virtual uint32_t GetBarcodeAttributeMask() const = 0;
};
@@ -70,7 +70,7 @@ class IFWL_Barcode : public IFWL_Edit {
void OnProcessEvent(CFWL_Event* pEvent) override;
void SetType(BC_TYPE type);
- FX_BOOL IsProtectedType();
+ bool IsProtectedType();
protected:
void GenerateBarcodeImageCache();