diff options
author | kotontrion <[email protected]> | 2024-09-11 10:57:51 +0200 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-09-11 10:57:51 +0200 |
commit | 56dd3eb43d218d6099d760f6c0c4956db84c46f2 (patch) | |
tree | 755d377c0b76c51a27d4c03ddf136a1d009c755a | |
parent | 68e46d252273e1b18ee21fa581e3407cfe4710e7 (diff) |
tray: Change return type of create_menu method
Programs using this lib won't have to link against DBusmenu-gtk3
anymore.
-rw-r--r-- | lib/tray/trayItem.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tray/trayItem.vala b/lib/tray/trayItem.vala index b6b9da0..d5e8603 100644 --- a/lib/tray/trayItem.vala +++ b/lib/tray/trayItem.vala @@ -258,7 +258,7 @@ public class TrayItem : Object { } - public DbusmenuGtk.Menu? create_menu() { + public Gtk.Menu? create_menu() { if (proxy.Menu == null) return null; |