1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 10:37:34 +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

@ -1,9 +1,9 @@
#include "ClockWidget.h"
#include "Painter.h"
#include <SharedGraphics/Painter.h>
#include <time.h>
ClockWidget::ClockWidget(Widget* parent)
: Widget(parent)
ClockWidget::ClockWidget(GWidget* parent)
: GWidget(parent)
{
setWindowRelativeRect({ 0, 0, 100, 40 });
startTimer(250);