1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:37:34 +00:00

LibIPC: Rename IMessage id/name to message_id/message_name

Hogging "id" and "name" makes it impossible to use these as message
parameter names, which seems silly. :^)
This commit is contained in:
Andreas Kling 2019-12-02 11:07:05 +01:00
parent b780dcf353
commit 8ae62c57ee
3 changed files with 8 additions and 8 deletions

View file

@ -8,8 +8,8 @@ public:
virtual ~IMessage();
virtual int endpoint_magic() const = 0;
virtual int id() const = 0;
virtual String name() const = 0;
virtual int message_id() const = 0;
virtual String message_name() const = 0;
virtual ByteBuffer encode() const = 0;
protected: