diff options
author | Aylur <[email protected]> | 2024-10-29 18:10:07 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-10-29 18:26:54 +0000 |
commit | 479e85aca3dfc60f92f3d98ec82a5d58607e24db (patch) | |
tree | e68aa39ff5def49312b64d92d064b942ee794bc6 /lib/notifd/proxy.vala | |
parent | 8705ab494f448c508c43c4272b501a3f3bdbac70 (diff) |
fixup(notifd): make dismissed signal internal
its used only internally, the resolved signal is meant to be the public
api
Diffstat (limited to 'lib/notifd/proxy.vala')
-rw-r--r-- | lib/notifd/proxy.vala | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/notifd/proxy.vala b/lib/notifd/proxy.vala index bedb8b9..95e7105 100644 --- a/lib/notifd/proxy.vala +++ b/lib/notifd/proxy.vala @@ -32,10 +32,6 @@ internal class AstalNotifd.DaemonProxy : Object { set { proxy.dont_disturb = value; } } - public uint[] notification_ids() throws DBusError, IOError { - return proxy.notification_ids(); - } - public Notification get_notification(uint id) { return notifs.get(id); } |