diff options
author | Aylur <[email protected]> | 2024-10-08 21:53:35 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-08 21:53:35 +0000 |
commit | 6932db56efec6c8114c0f78e08dc57f00b4a790f (patch) | |
tree | e09b5c0b99b98cf952455ee00d72491786b2cbef /lib/notifd | |
parent | 2a3bb3af6fec942c36d20dbf502e8e91bd741bb5 (diff) |
notifd: fix notification setters
Diffstat (limited to 'lib/notifd')
-rw-r--r-- | lib/notifd/notification.vala | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/notifd/notification.vala b/lib/notifd/notification.vala index c3a1186..5db3fe2 100644 --- a/lib/notifd/notification.vala +++ b/lib/notifd/notification.vala @@ -17,25 +17,25 @@ public class AstalNotifd.Notification : Object { private HashTable<string, Variant> hints; /** Unix time of when the notification was sent. */ - public int64 time { private construct set; get; } + public int64 time { internal set; get; } /** Name of the sending application. */ - public string app_name { private construct set; get; } + public string app_name { internal set; get; } /** Icon name of the sending application. */ - public string app_icon { private construct set; get; } + public string app_icon { internal set; get; } /** Single line overview of the notification. */ - public string summary { private construct set; get; } + public string summary { internal set; get; } /** Multi-line body of text, where each line is a paragraph. May contain markup. */ - public string body { private construct set; get; } + public string body { internal set; get; } /** Id of the notification. */ - public uint id { private construct set; get; } + public uint id { internal set; get; } /** Time in milliseconds after the notification expires. */ - public int expire_timeout { private construct set; get; } + public int expire_timeout { internal set; get; } /** * List of {@link Action} of the notification. |