1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 02:37:35 +00:00

Make the Widgets/ directory build again.

This commit is contained in:
Andreas Kling 2018-12-21 02:18:16 +01:00
parent ec1c487dcd
commit a9f256a745
10 changed files with 10 additions and 10 deletions

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "Widget.h" #include "Widget.h"
#include <AK/String.h> #include <AK/AKString.h>
class Button final : public Widget { class Button final : public Widget {
public: public:

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "Widget.h" #include "Widget.h"
#include <AK/String.h> #include <AK/AKString.h>
class CheckBox final : public Widget { class CheckBox final : public Widget {
public: public:

View file

@ -2,7 +2,7 @@
#include "Point.h" #include "Point.h"
#include "Rect.h" #include "Rect.h"
#include <AK/String.h> #include <AK/AKString.h>
#include <AK/Types.h> #include <AK/Types.h>
static const char* eventNames[] = { static const char* eventNames[] = {

View file

@ -1,7 +1,7 @@
#pragma once #pragma once
#include "Widget.h" #include "Widget.h"
#include <AK/String.h> #include <AK/AKString.h>
class Label final : public Widget { class Label final : public Widget {
public: public:

View file

@ -1,6 +1,6 @@
#pragma once #pragma once
#include <AK/String.h> #include <AK/AKString.h>
class Window; class Window;

View file

@ -4,7 +4,7 @@
#include "Font.h" #include "Font.h"
#include "Window.h" #include "Window.h"
#include <AK/Assertions.h> #include <AK/Assertions.h>
#include <AK/StdLib.h> #include <AK/StdLibExtras.h>
#include <SDL.h> #include <SDL.h>
Painter::Painter(Widget& widget) Painter::Painter(Widget& widget)

View file

@ -4,7 +4,7 @@
#include "Point.h" #include "Point.h"
#include "Rect.h" #include "Rect.h"
#include "Size.h" #include "Size.h"
#include <AK/String.h> #include <AK/AKString.h>
class CBitmap; class CBitmap;
class Font; class Font;

View file

@ -2,7 +2,7 @@
#include "Painter.h" #include "Painter.h"
#include "Font.h" #include "Font.h"
#include "CBitmap.h" #include "CBitmap.h"
#include <AK/StdLib.h> #include <AK/StdLibExtras.h>
TextBox::TextBox(Widget* parent) TextBox::TextBox(Widget* parent)
: Widget(parent) : Widget(parent)

View file

@ -5,7 +5,7 @@
#include "Rect.h" #include "Rect.h"
#include "Color.h" #include "Color.h"
#include "Font.h" #include "Font.h"
#include <AK/String.h> #include <AK/AKString.h>
#include <functional> #include <functional>
class Window; class Window;

View file

@ -2,7 +2,7 @@
#include "Object.h" #include "Object.h"
#include "Rect.h" #include "Rect.h"
#include <AK/String.h> #include <AK/AKString.h>
#include <AK/WeakPtr.h> #include <AK/WeakPtr.h>
class Widget; class Widget;