diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2018-05-22 14:27:29 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-22 14:27:29 +0000 |
commit | 366df7fd6e6b75e0500e67960a20dc3129c703d6 (patch) | |
tree | f68cb87b681dddbe5c4b98b7cd46d834af3d4018 /fpdfsdk/fpdf_view_c_api_test.c | |
parent | 11bb17875604a51f442f8c906555c146a5571d2d (diff) | |
download | pdfium-366df7fd6e6b75e0500e67960a20dc3129c703d6.tar.xz |
Add FPDFPageObj_GetStrokeWidth() API
It was already possible to set the stroke width of a page object, this
is the other direction.
Change-Id: I5c4681b232768fc928bc7a169f223877284d4812
Reviewed-on: https://pdfium-review.googlesource.com/32770
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/fpdf_view_c_api_test.c')
-rw-r--r-- | fpdfsdk/fpdf_view_c_api_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fpdfsdk/fpdf_view_c_api_test.c b/fpdfsdk/fpdf_view_c_api_test.c index 15d893d77c..946e415077 100644 --- a/fpdfsdk/fpdf_view_c_api_test.c +++ b/fpdfsdk/fpdf_view_c_api_test.c @@ -170,6 +170,7 @@ int CheckPDFiumCApi() { CHK(FPDFPath_GetStrokeColor); CHK(FPDFPageObj_GetStrokeColor); CHK(FPDFPath_SetStrokeWidth); + CHK(FPDFPageObj_GetStrokeWidth); CHK(FPDFPageObj_SetStrokeWidth); CHK(FPDFPath_SetFillColor); CHK(FPDFPageObj_SetFillColor); |