mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:07:47 +00:00
Userland: Migrate to String in notification system
This commit is contained in:
parent
f46b393d2d
commit
a7c770268f
10 changed files with 35 additions and 34 deletions
|
@ -2,9 +2,9 @@
|
|||
|
||||
endpoint NotificationServer
|
||||
{
|
||||
show_notification([UTF8] DeprecatedString text, [UTF8] DeprecatedString title, Gfx::ShareableBitmap icon) => ()
|
||||
show_notification(String text, String title, Gfx::ShareableBitmap icon) => ()
|
||||
|
||||
update_notification_text([UTF8] DeprecatedString text, [UTF8] DeprecatedString title) => (bool still_showing)
|
||||
update_notification_text(String text, String title) => (bool still_showing)
|
||||
|
||||
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue