diff options
author | Lei Zhang <thestig@chromium.org> | 2018-09-17 18:54:07 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-09-17 18:54:07 +0000 |
commit | 222db47cd745c223bbf52ac5770909c41dc660b8 (patch) | |
tree | f570fd38c1fa427fd60eeadf3b86ead966d8b9a4 /fxbarcode/cbc_code39.cpp | |
parent | bff81396b7aee1cc195194d0d1122d8fbec7dfb9 (diff) | |
download | pdfium-222db47cd745c223bbf52ac5770909c41dc660b8.tar.xz |
Make CBC_CodeBase::SetTextLocation() not virtual.
Make CBC_Writer::SetTextLocation() virtual instead.
Change-Id: I9ac06affe35f3c7bebc2f5ff0917e7146cfe89cc
Reviewed-on: https://pdfium-review.googlesource.com/42601
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxbarcode/cbc_code39.cpp')
-rw-r--r-- | fxbarcode/cbc_code39.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/fxbarcode/cbc_code39.cpp b/fxbarcode/cbc_code39.cpp index 52859e14c5..6aa3646e97 100644 --- a/fxbarcode/cbc_code39.cpp +++ b/fxbarcode/cbc_code39.cpp @@ -61,10 +61,6 @@ BC_TYPE CBC_Code39::GetType() { return BC_CODE39; } -bool CBC_Code39::SetTextLocation(BC_TEXT_LOC location) { - return GetOnedCode39Writer()->SetTextLocation(location); -} - bool CBC_Code39::SetWideNarrowRatio(int8_t ratio) { return GetOnedCode39Writer()->SetWideNarrowRatio(ratio); } |