Ver Fonte

LibCompress: Rename LZWDecoder.h => Lzw.h

Lucas CHOLLET há 1 ano atrás
pai
commit
11f53ba9cc

+ 0 - 0
Userland/Libraries/LibCompress/LZWDecoder.h → Userland/Libraries/LibCompress/Lzw.h


+ 1 - 1
Userland/Libraries/LibGfx/ImageFormats/GIFLoader.cpp

@@ -14,7 +14,7 @@
 #include <AK/Memory.h>
 #include <AK/MemoryStream.h>
 #include <AK/Try.h>
-#include <LibCompress/LZWDecoder.h>
+#include <LibCompress/Lzw.h>
 #include <LibGfx/ImageFormats/GIFLoader.h>
 #include <string.h>
 

+ 1 - 1
Userland/Libraries/LibGfx/ImageFormats/TIFFLoader.cpp

@@ -9,7 +9,7 @@
 #include <AK/Debug.h>
 #include <AK/Endian.h>
 #include <AK/String.h>
-#include <LibCompress/LZWDecoder.h>
+#include <LibCompress/Lzw.h>
 #include <LibCompress/PackBitsDecoder.h>
 #include <LibCompress/Zlib.h>
 #include <LibGfx/CMYKBitmap.h>

+ 1 - 1
Userland/Libraries/LibPDF/Filter.cpp

@@ -7,7 +7,7 @@
 #include <AK/BitStream.h>
 #include <AK/Hex.h>
 #include <LibCompress/Deflate.h>
-#include <LibCompress/LZWDecoder.h>
+#include <LibCompress/Lzw.h>
 #include <LibCompress/PackBitsDecoder.h>
 #include <LibGfx/ImageFormats/CCITTDecoder.h>
 #include <LibGfx/ImageFormats/JBIG2Loader.h>