LibGUI: Remove leading G from filenames

This commit is contained in:
Andreas Kling 2020-02-06 20:33:02 +01:00
commit 6a9cc66b97
Notes: sideshowbarker 2024-07-19 09:33:13 +09:00
316 changed files with 965 additions and 966 deletions

View file

@ -67,7 +67,6 @@ int main(int argc, char** argv)
const JsonObject& widget_object = value.as_object();
auto class_name = widget_object.get("class").to_string();
StringBuilder builder;
builder.append('G');
auto parts = class_name.split(':');
builder.append(parts.last());
dbg() << "#include <LibGUI/" << builder.to_string() << ".h>";