Re-apply naughty: Fix builds without dbus (d5088c5
)
This got lost in 355f106
(naughty: Split up into core and dbus).
This commit is contained in:
parent
02bfd06038
commit
516dd91027
|
@ -47,17 +47,21 @@ dbus.config.mapping = {
|
|||
}
|
||||
|
||||
local function sendActionInvoked(notificationId, action)
|
||||
capi.dbus.emit_signal("session", "/org/freedesktop/Notifications",
|
||||
"org.freedesktop.Notifications", "ActionInvoked",
|
||||
"i", notificationId,
|
||||
"s", action)
|
||||
if capi.dbus then
|
||||
capi.dbus.emit_signal("session", "/org/freedesktop/Notifications",
|
||||
"org.freedesktop.Notifications", "ActionInvoked",
|
||||
"i", notificationId,
|
||||
"s", action)
|
||||
end
|
||||
end
|
||||
|
||||
local function sendNotificationClosed(notificationId, reason)
|
||||
capi.dbus.emit_signal("session", "/org/freedesktop/Notifications",
|
||||
"org.freedesktop.Notifications", "NotificationClosed",
|
||||
"i", notificationId,
|
||||
"i", reason)
|
||||
if capi.dbus then
|
||||
capi.dbus.emit_signal("session", "/org/freedesktop/Notifications",
|
||||
"org.freedesktop.Notifications", "NotificationClosed",
|
||||
"i", notificationId,
|
||||
"i", reason)
|
||||
end
|
||||
end
|
||||
|
||||
local function convert_icon(w, h, rowstride, channels, data)
|
||||
|
|
Loading…
Reference in New Issue