1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

LibGfx: Remove declarations for non-existent methods

This commit is contained in:
Sam Atkins 2023-01-27 17:08:38 +00:00 committed by Linus Groh
parent 88bbbe12ba
commit 6d5fb9eb02
3 changed files with 1 additions and 4 deletions

View file

@ -130,7 +130,7 @@ void FontDatabase::load_all_fonts_from_path(DeprecatedString const& root)
auto current_directory = path_queue.dequeue();
Core::DirIterator dir_iterator(current_directory, Core::DirIterator::SkipParentAndBaseDir);
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;
}
while (dir_iterator.has_next()) {