ladybird/Userland/Services/Taskbar
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
ClockWidget.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ClockWidget.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
main.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
QuickLaunchWidget.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
QuickLaunchWidget.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ShutdownDialog.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ShutdownDialog.h Taskbar: Use Process::spawn_or_show_error() for shutdown actions 2023-03-24 22:06:38 +00:00
TaskbarButton.cpp LibGfx+Userland: Add width_rounded_up() helper 2023-04-15 15:24:50 +02:00
TaskbarButton.h Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
TaskbarWindow.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TaskbarWindow.h Userland: Convert config listener callbacks to use StringView 2023-06-27 15:37:00 +01:00
WindowIdentifier.h AK: Rename GenericTraits to DefaultTraits 2023-11-09 10:05:51 -05:00
WindowList.cpp LibGUI+Taskbar+WindowServer: Remove mode and parent methods from Taskbar 2022-08-25 13:28:50 +02:00
WindowList.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30