summaryrefslogtreecommitdiff
path: root/lib/notifd
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-10-08 21:53:35 +0000
committerAylur <[email protected]>2024-10-08 21:53:35 +0000
commit6932db56efec6c8114c0f78e08dc57f00b4a790f (patch)
treee09b5c0b99b98cf952455ee00d72491786b2cbef /lib/notifd
parent2a3bb3af6fec942c36d20dbf502e8e91bd741bb5 (diff)
notifd: fix notification setters
Diffstat (limited to 'lib/notifd')
-rw-r--r--lib/notifd/notification.vala14
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.