ToastQueue: use strings for data instead of views.

Why the fuck didn't I catch that sooner ?
This commit is contained in:
Guillaume Jacquemin 2022-11-22 10:23:53 +01:00
parent 51b25ea9c5
commit c3a9c8dd31
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class Toast {
private:
Type _type{Type::Default};
Containers::StringView _message;
Containers::String _message;
std::chrono::milliseconds _timeout;
std::chrono::steady_clock::time_point _creationTime;
Animation::Track<UnsignedInt, Phase> _phaseTrack;