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/gtk4 | |
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/gtk4')
-rw-r--r-- | lib/astal/gtk4/src/application.vala | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/astal/gtk4/src/application.vala b/lib/astal/gtk4/src/application.vala index e5871c0..314443e 100644 --- a/lib/astal/gtk4/src/application.vala +++ b/lib/astal/gtk4/src/application.vala @@ -182,11 +182,11 @@ public class Astal.Application : Gtk.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"); } |