mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-24 10:18:59 +00:00
DisplaySettings: Stop using DeprecatedString
This also further improves error propagation in cases where String demands it.
This commit is contained in:
parent
c9ad252e33
commit
44b67db7ab
Notes:
sideshowbarker
2024-07-18 02:47:59 +09:00
Author: https://github.com/implicitfield
Commit: 44b67db7ab
Pull-request: https://github.com/SerenityOS/serenity/pull/17893
13 changed files with 217 additions and 116 deletions
|
@ -9,6 +9,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "MonitorWidget.h"
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <LibGUI/ColorInput.h>
|
||||
#include <LibGUI/ComboBox.h>
|
||||
|
@ -33,7 +34,7 @@ private:
|
|||
ErrorOr<void> create_frame();
|
||||
ErrorOr<void> load_current_settings();
|
||||
|
||||
Vector<DeprecatedString> m_modes;
|
||||
Vector<String> m_modes;
|
||||
|
||||
bool& m_background_settings_changed;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue