1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 05:37:43 +00:00

LibGUI: Remove G prefix from macros

This commit is contained in:
Tibor Nagy 2020-03-19 23:09:15 +01:00 committed by Andreas Kling
parent 073ac3a22f
commit 9e6e731a78
3 changed files with 13 additions and 13 deletions

View file

@ -35,7 +35,7 @@
#include <LibGfx/Orientation.h>
#include <LibGfx/Rect.h>
#define REGISTER_GWIDGET(class_name) \
#define REGISTER_WIDGET(class_name) \
extern WidgetClassRegistration registration_##class_name; \
WidgetClassRegistration registration_##class_name(#class_name, []() { return class_name::construct(); });