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

Revert "Userland: static vs non-static constexpr variables"

This reverts commit 800ea8ea96.

Booting the system no longer worked after these changes.
This commit is contained in:
Linus Groh 2021-05-21 10:30:21 +01:00
parent 68f76b9e37
commit d60ebbbba6
38 changed files with 184 additions and 192 deletions

View file

@ -15,7 +15,7 @@ REGISTER_WIDGET(GUI, Scrollbar)
namespace GUI {
static constexpr char s_up_arrow_bitmap_data[] = {
static const char* s_up_arrow_bitmap_data = {
" "
" # "
" ### "
@ -27,7 +27,7 @@ static constexpr char s_up_arrow_bitmap_data[] = {
" "
};
static constexpr char s_down_arrow_bitmap_data[] = {
static const char* s_down_arrow_bitmap_data = {
" "
" ### "
" ### "
@ -39,7 +39,7 @@ static constexpr char s_down_arrow_bitmap_data[] = {
" "
};
static constexpr char s_left_arrow_bitmap_data[] = {
static const char* s_left_arrow_bitmap_data = {
" "
" # "
" ## "
@ -51,7 +51,7 @@ static constexpr char s_left_arrow_bitmap_data[] = {
" "
};
static constexpr char s_right_arrow_bitmap_data[] = {
static const char* s_right_arrow_bitmap_data = {
" "
" # "
" ## "