summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF/Fonts
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibPDF/Fonts')
-rw-r--r--Userland/Libraries/LibPDF/Fonts/PDFFont.h2
-rw-r--r--Userland/Libraries/LibPDF/Fonts/Type1Font.cpp2
-rw-r--r--Userland/Libraries/LibPDF/Fonts/Type1Font.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Libraries/LibPDF/Fonts/PDFFont.h b/Userland/Libraries/LibPDF/Fonts/PDFFont.h
index 6f3f0ce671..0b28012c57 100644
--- a/Userland/Libraries/LibPDF/Fonts/PDFFont.h
+++ b/Userland/Libraries/LibPDF/Fonts/PDFFont.h
@@ -17,7 +17,7 @@ public:
virtual ~PDFFont() = default;
virtual u32 char_code_to_code_point(u16 char_code) const = 0;
- virtual float get_char_width(u16 char_code) const = 0;
+ virtual float get_char_width(u16 char_code, float font_size) const = 0;
};
}
diff --git a/Userland/Libraries/LibPDF/Fonts/Type1Font.cpp b/Userland/Libraries/LibPDF/Fonts/Type1Font.cpp
index 315e808579..e5e144ed34 100644
--- a/Userland/Libraries/LibPDF/Fonts/Type1Font.cpp
+++ b/Userland/Libraries/LibPDF/Fonts/Type1Font.cpp
@@ -88,7 +88,7 @@ u32 Type1Font::char_code_to_code_point(u16 char_code) const
return descriptor.code_point;
}
-float Type1Font::get_char_width(u16 char_code) const
+float Type1Font::get_char_width(u16 char_code, float) const
{
u16 width;
if (auto char_code_width = m_widths.get(char_code); char_code_width.has_value()) {
diff --git a/Userland/Libraries/LibPDF/Fonts/Type1Font.h b/Userland/Libraries/LibPDF/Fonts/Type1Font.h
index 361d2229cf..6bd3e98caa 100644
--- a/Userland/Libraries/LibPDF/Fonts/Type1Font.h
+++ b/Userland/Libraries/LibPDF/Fonts/Type1Font.h
@@ -19,7 +19,7 @@ public:
~Type1Font() override = default;
u32 char_code_to_code_point(u16 char_code) const override;
- float get_char_width(u16 char_code) const override;
+ float get_char_width(u16 char_code, float font_size) const override;
private:
RefPtr<StreamObject> m_to_unicode;