Skip to content

Commit 6932db5

Browse files
committed
notifd: fix notification setters
1 parent 2a3bb3a commit 6932db5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/notifd/notification.vala

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,25 +17,25 @@ public class AstalNotifd.Notification : Object {
1717
private HashTable<string, Variant> hints;
1818

1919
/** Unix time of when the notification was sent. */
20-
public int64 time { private construct set; get; }
20+
public int64 time { internal set; get; }
2121

2222
/** Name of the sending application. */
23-
public string app_name { private construct set; get; }
23+
public string app_name { internal set; get; }
2424

2525
/** Icon name of the sending application. */
26-
public string app_icon { private construct set; get; }
26+
public string app_icon { internal set; get; }
2727

2828
/** Single line overview of the notification. */
29-
public string summary { private construct set; get; }
29+
public string summary { internal set; get; }
3030

3131
/** Multi-line body of text, where each line is a paragraph. May contain markup. */
32-
public string body { private construct set; get; }
32+
public string body { internal set; get; }
3333

3434
/** Id of the notification. */
35-
public uint id { private construct set; get; }
35+
public uint id { internal set; get; }
3636

3737
/** Time in milliseconds after the notification expires. */
38-
public int expire_timeout { private construct set; get; }
38+
public int expire_timeout { internal set; get; }
3939

4040
/**
4141
* List of {@link Action} of the notification.

0 commit comments

Comments
 (0)