فهرست منبع

LibGfx: Remove declarations for non-existent methods

Sam Atkins 2 سال پیش
والد
کامیت
6d5fb9eb02

+ 0 - 1
Userland/Libraries/LibGfx/DDSLoader.h

@@ -254,7 +254,6 @@ private:
     DDSImageDecoderPlugin(u8 const*, size_t);
 
     OwnPtr<DDSLoadingContext> m_context;
-    void dump_debug();
 };
 
 }

+ 1 - 1
Userland/Libraries/LibGfx/Font/FontDatabase.cpp

@@ -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()) {

+ 0 - 2
Userland/Libraries/LibGfx/Font/FontDatabase.h

@@ -62,8 +62,6 @@ private:
     FontDatabase();
     ~FontDatabase() = default;
 
-    void load_fonts();
-
     RefPtr<Typeface> get_or_create_typeface(DeprecatedString const& family, DeprecatedString const& variant);
 
     struct Private;