summaryrefslogtreecommitdiff
path: root/fxbarcode/cbc_code39.h
diff options
context:
space:
mode:
Diffstat (limited to 'fxbarcode/cbc_code39.h')
-rw-r--r--fxbarcode/cbc_code39.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/fxbarcode/cbc_code39.h b/fxbarcode/cbc_code39.h
index 83c8daa32f..4e240b7f89 100644
--- a/fxbarcode/cbc_code39.h
+++ b/fxbarcode/cbc_code39.h
@@ -21,13 +21,12 @@ class CBC_Code39 final : public CBC_OneCode {
~CBC_Code39() override;
// CBC_OneCode:
+ BC_TYPE GetType() override;
bool Encode(const WideStringView& contents) override;
bool RenderDevice(CFX_RenderDevice* device,
const CFX_Matrix* matrix) override;
- BC_TYPE GetType() override;
-
- bool SetTextLocation(BC_TEXT_LOC location);
- bool SetWideNarrowRatio(int8_t ratio);
+ bool SetTextLocation(BC_TEXT_LOC location) override;
+ bool SetWideNarrowRatio(int8_t ratio) override;
private:
CBC_OnedCode39Writer* GetOnedCode39Writer();