mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 10:01:13 +09:00
LibGUI: Move REGISTER_WIDGET(GUI, TabWidget) to Widget.cpp
All the other (GUI) registrations happen here, so it's confusing to have just one elsewhere ("wait... is TabWidget not registered?!").
This commit is contained in:
parent
a514f2cbfd
commit
b8eb1baac8
Notes:
sideshowbarker
2024-07-19 00:27:13 +09:00
Author: https://github.com/linusg
Commit: b8eb1baac8
Pull-request: https://github.com/SerenityOS/serenity/pull/4626
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/devsh0
2 changed files with 2 additions and 2 deletions
|
@ -47,6 +47,7 @@
|
|||
#include <LibGUI/SpinBox.h>
|
||||
#include <LibGUI/Splitter.h>
|
||||
#include <LibGUI/StatusBar.h>
|
||||
#include <LibGUI/TabWidget.h>
|
||||
#include <LibGUI/TextBox.h>
|
||||
#include <LibGUI/ToolBar.h>
|
||||
#include <LibGUI/ToolBarContainer.h>
|
||||
|
@ -75,6 +76,7 @@ REGISTER_WIDGET(GUI, ScrollBar)
|
|||
REGISTER_WIDGET(GUI, Slider)
|
||||
REGISTER_WIDGET(GUI, SpinBox)
|
||||
REGISTER_WIDGET(GUI, StatusBar)
|
||||
REGISTER_WIDGET(GUI, TabWidget)
|
||||
REGISTER_WIDGET(GUI, TextBox)
|
||||
REGISTER_WIDGET(GUI, TextEditor)
|
||||
REGISTER_WIDGET(GUI, ToolBar)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue