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

Rename all the LibGUI classes to GClassName.

This commit is contained in:
Andreas Kling 2019-01-20 04:49:48 +01:00
parent a026da47e7
commit b91479d9b9
33 changed files with 623 additions and 581 deletions

View file

@ -5,7 +5,7 @@
#include <AK/StdLibExtras.h>
#ifdef LIBGUI
#include <LibGUI/Widget.h>
#include <LibGUI/GWidget.h>
#endif
#define DEBUG_WIDGET_UNDERDRAW
@ -18,7 +18,7 @@ Painter::Painter(GraphicsBitmap& bitmap)
}
#ifdef LIBGUI
Painter::Painter(Widget& widget)
Painter::Painter(GWidget& widget)
: m_font(&widget.font())
{
m_target = widget.backing();