diff options
author | Aylur <[email protected]> | 2025-02-27 14:58:40 +0100 |
---|---|---|
committer | Aylur <[email protected]> | 2025-02-27 15:04:40 +0100 |
commit | 98a488d0efe520533316b0df32386d9b40c2ef17 (patch) | |
tree | 4decb9c8be264c69901e504132c1039d29666f13 /lib/astal/io/daemon.vala | |
parent | b7f10b99bc810e7ad6a949d6670cb440d33045a0 (diff) |
rename: message -> request
the same thing was called either message or request
now its only referred to as a request
Diffstat (limited to 'lib/astal/io/daemon.vala')
-rw-r--r-- | lib/astal/io/daemon.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/astal/io/daemon.vala b/lib/astal/io/daemon.vala index 7f3173e..1dca26d 100644 --- a/lib/astal/io/daemon.vala +++ b/lib/astal/io/daemon.vala @@ -22,11 +22,11 @@ public class AstalIO.Daemon : GLib.Application, AstalIO.Application { /** * Handler for an incoming request. * - * @param msg Body of the message + * @param request Body of the request * @param conn The connection which expects the response. */ [DBus (visible=false)] - public virtual void request(string msg, SocketConnection conn) { + public virtual void request(string request, SocketConnection conn) { AstalIO.write_sock.begin(conn, @"missing response implementation on $application_id"); } |