mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:37:43 +00:00
LibGfx: Remove declarations for non-existent methods
This commit is contained in:
parent
88bbbe12ba
commit
6d5fb9eb02
3 changed files with 1 additions and 4 deletions
|
@ -254,7 +254,6 @@ private:
|
||||||
DDSImageDecoderPlugin(u8 const*, size_t);
|
DDSImageDecoderPlugin(u8 const*, size_t);
|
||||||
|
|
||||||
OwnPtr<DDSLoadingContext> m_context;
|
OwnPtr<DDSLoadingContext> m_context;
|
||||||
void dump_debug();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -130,7 +130,7 @@ void FontDatabase::load_all_fonts_from_path(DeprecatedString const& root)
|
||||||
auto current_directory = path_queue.dequeue();
|
auto current_directory = path_queue.dequeue();
|
||||||
Core::DirIterator dir_iterator(current_directory, Core::DirIterator::SkipParentAndBaseDir);
|
Core::DirIterator dir_iterator(current_directory, Core::DirIterator::SkipParentAndBaseDir);
|
||||||
if (dir_iterator.has_error()) {
|
if (dir_iterator.has_error()) {
|
||||||
dbgln("FontDatabase::load_fonts: {}", dir_iterator.error_string());
|
dbgln("FontDatabase::load_all_fonts_from_path: {}", dir_iterator.error_string());
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
while (dir_iterator.has_next()) {
|
while (dir_iterator.has_next()) {
|
||||||
|
|
|
@ -62,8 +62,6 @@ private:
|
||||||
FontDatabase();
|
FontDatabase();
|
||||||
~FontDatabase() = default;
|
~FontDatabase() = default;
|
||||||
|
|
||||||
void load_fonts();
|
|
||||||
|
|
||||||
RefPtr<Typeface> get_or_create_typeface(DeprecatedString const& family, DeprecatedString const& variant);
|
RefPtr<Typeface> get_or_create_typeface(DeprecatedString const& family, DeprecatedString const& variant);
|
||||||
|
|
||||||
struct Private;
|
struct Private;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue