mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
Userland: Rename IPC::ServerConnection=>IPC::ConnectionToServer
This was done with CLion's automatic rename feature.
This commit is contained in:
parent
3a71748e5d
commit
d88da82e28
26 changed files with 53 additions and 53 deletions
|
@ -11,12 +11,12 @@
|
|||
#include <LibCore/File.h>
|
||||
#include <LibCore/Promise.h>
|
||||
#include <LibCore/StandardPaths.h>
|
||||
#include <LibIPC/ServerConnection.h>
|
||||
#include <LibIPC/ConnectionToServer.h>
|
||||
|
||||
namespace Config {
|
||||
|
||||
class Client final
|
||||
: public IPC::ServerConnection<ConfigClientEndpoint, ConfigServerEndpoint>
|
||||
: public IPC::ConnectionToServer<ConfigClientEndpoint, ConfigServerEndpoint>
|
||||
, public ConfigClientEndpoint {
|
||||
IPC_CLIENT_CONNECTION(Client, "/tmp/portal/config")
|
||||
|
||||
|
@ -40,7 +40,7 @@ public:
|
|||
|
||||
private:
|
||||
explicit Client(NonnullOwnPtr<Core::Stream::LocalSocket> socket)
|
||||
: IPC::ServerConnection<ConfigClientEndpoint, ConfigServerEndpoint>(*this, move(socket))
|
||||
: IPC::ConnectionToServer<ConfigClientEndpoint, ConfigServerEndpoint>(*this, move(socket))
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue