mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-10 16:24:45 -07:00
PB: server compiles again, standalone RemoteClient is able to log in
This commit is contained in:
parent
10018280e5
commit
d3b96b1a88
39 changed files with 988 additions and 807 deletions
|
|
@ -20,7 +20,9 @@ LocalServerInterface *LocalServer::newConnection()
|
|||
return lsi;
|
||||
}
|
||||
|
||||
ServerInfo_User *LocalServer::getUserData(const QString &name)
|
||||
ServerInfo_User LocalServer::getUserData(const QString &name)
|
||||
{
|
||||
return new ServerInfo_User(name);
|
||||
ServerInfo_User result;
|
||||
result.set_name(name.toStdString());
|
||||
return result;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue