mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:37:36 +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
13 changed files with 217 additions and 116 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/String.h>
|
||||
#include <LibGUI/SettingsWindow.h>
|
||||
#include <LibGUI/SystemEffects.h>
|
||||
|
||||
|
@ -30,7 +31,7 @@ private:
|
|||
ErrorOr<void> load_settings();
|
||||
|
||||
SystemEffects m_system_effects;
|
||||
Vector<DeprecatedString> m_geometry_list;
|
||||
Vector<String> m_geometry_list;
|
||||
RefPtr<ComboBox> m_geometry_combobox;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue