From 28a7eba7564e69a35684e3b496f6908f517851a3 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Mon, 11 May 2026 13:54:17 +0200 Subject: [PATCH] [client/ui] Remove unused xembed_host_other.go stub --- client/ui/xembed_host_other.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 client/ui/xembed_host_other.go diff --git a/client/ui/xembed_host_other.go b/client/ui/xembed_host_other.go deleted file mode 100644 index c93d78413..000000000 --- a/client/ui/xembed_host_other.go +++ /dev/null @@ -1,18 +0,0 @@ -//go:build !linux || (linux && 386) - -package main - -import ( - "errors" - - "github.com/godbus/dbus/v5" -) - -type xembedHost struct{} - -func newXembedHost(_ *dbus.Conn, _ string, _ dbus.ObjectPath) (*xembedHost, error) { - return nil, errors.New("XEmbed tray not supported on this platform") -} - -func (h *xembedHost) run() {} -func (h *xembedHost) stop() {}