mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:47:45 +00:00
LibGUI: Add more extensions to FileIconProvider
This adds the following: - cplusplus: .cxx, .cc, .c++ - header: .hpp, .hxx, .hh, .h++ - javascript: .mjs
This commit is contained in:
parent
5b68ea8dde
commit
f0c2ee3c56
1 changed files with 18 additions and 18 deletions
|
@ -34,14 +34,14 @@
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
||||||
#define ENUMERATE_FILETYPES(F) \
|
#define ENUMERATE_FILETYPES(F) \
|
||||||
F(cplusplus, ".cpp") \
|
F(cplusplus, ".cpp", ".cxx", ".cc", ".c++") \
|
||||||
F(form, ".frm") \
|
F(form, ".frm") \
|
||||||
F(hackstudio, ".hsp") \
|
F(hackstudio, ".hsp") \
|
||||||
F(header, ".h") \
|
F(header, ".h", ".hpp", ".hxx", ".hh", ".h++") \
|
||||||
F(html, ".html") \
|
F(html, ".html", ".htm") \
|
||||||
F(image, ".png") \
|
F(image, ".png") \
|
||||||
F(java, ".java") \
|
F(java, ".java") \
|
||||||
F(javascript, ".js") \
|
F(javascript, ".js", ".mjs") \
|
||||||
F(library, ".so", ".a") \
|
F(library, ".so", ".a") \
|
||||||
F(markdown, ".md") \
|
F(markdown, ".md") \
|
||||||
F(music, ".midi") \
|
F(music, ".midi") \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue