mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Rename WindowComposer -> WindowServer.
I keep referring to it as the windowing server anyway.
This commit is contained in:
@@ -58,12 +58,6 @@ WIDGETS_OBJS = \
|
|||||||
../Widgets/Color.o \
|
../Widgets/Color.o \
|
||||||
../Widgets/CharacterBitmap.o \
|
../Widgets/CharacterBitmap.o \
|
||||||
../Widgets/EventLoop.o \
|
../Widgets/EventLoop.o \
|
||||||
../Widgets/Label.o \
|
|
||||||
../Widgets/Button.o \
|
|
||||||
../Widgets/MsgBox.o \
|
|
||||||
../Widgets/ListBox.o \
|
|
||||||
../Widgets/CheckBox.o \
|
|
||||||
../Widgets/TextBox.o \
|
|
||||||
../Widgets/AbstractScreen.o \
|
../Widgets/AbstractScreen.o \
|
||||||
../Widgets/GUIEventDevice.o \
|
../Widgets/GUIEventDevice.o \
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
#include "WindowComposer.h"
|
|
||||||
#include "Process.h"
|
#include "Process.h"
|
||||||
#include <Widgets/Font.h>
|
#include <Widgets/Font.h>
|
||||||
#include <Widgets/FrameBuffer.h>
|
#include <Widgets/FrameBuffer.h>
|
||||||
@@ -6,7 +5,7 @@
|
|||||||
#include <Widgets/EventLoop.h>
|
#include <Widgets/EventLoop.h>
|
||||||
#include <Widgets/Window.h>
|
#include <Widgets/Window.h>
|
||||||
|
|
||||||
void WindowComposer_main()
|
void WindowServer_main()
|
||||||
{
|
{
|
||||||
auto info = current->get_display_info();
|
auto info = current->get_display_info();
|
||||||
|
|
||||||
@@ -16,7 +15,7 @@ void WindowComposer_main()
|
|||||||
|
|
||||||
WindowManager::the();
|
WindowManager::the();
|
||||||
|
|
||||||
dbgprintf("Entering WindowComposer main loop.\n");
|
dbgprintf("Entering WindowServer main loop.\n");
|
||||||
EventLoop::main().exec();
|
EventLoop::main().exec();
|
||||||
|
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
|
|||||||
@@ -1,7 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
class WindowComposer {
|
|
||||||
public:
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
@@ -137,8 +137,8 @@ static void init_stage2()
|
|||||||
Process::create_kernel_process("spawn_stress", spawn_stress);
|
Process::create_kernel_process("spawn_stress", spawn_stress);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
extern void WindowComposer_main();
|
extern void WindowServer_main();
|
||||||
Process::create_kernel_process("WindowComposer", WindowComposer_main);
|
Process::create_kernel_process("WindowServer", WindowServer_main);
|
||||||
|
|
||||||
current->sys$exit(0);
|
current->sys$exit(0);
|
||||||
ASSERT_NOT_REACHED();
|
ASSERT_NOT_REACHED();
|
||||||
|
|||||||
Reference in New Issue
Block a user