[client/ui] Remove unused xembed_host_other.go stub

This commit is contained in:
Zoltan Papp
2026-05-11 13:54:17 +02:00
parent 8841b950a2
commit 28a7eba756

View File

@@ -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() {}