Rename Lobby.js to LobbyHandler.js to avoid filename conflict with lobby.js on case insensitive filesystems/APIs following 2cccd9825d/D2412, reported by Stan.

This was SVN commit r23173.
This commit is contained in:
elexis 2019-11-21 18:22:37 +00:00
parent 2cccd9825d
commit 27a949a1ea
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
/**
* This class owns the page handlers.
*/
class Lobby
class LobbyHandler
{
constructor(dialog)
{

View file

@ -26,7 +26,7 @@ var g_Nickname = Engine.LobbyGetNick();
/**
* This class organizes all components of this GUI page.
*/
var g_Lobby;
var g_LobbyHandler;
/**
* Called after the XmppConnection succeeded and when returning from a game.
@ -34,7 +34,7 @@ var g_Lobby;
function init(attribs)
{
if (g_Settings)
g_Lobby = new Lobby(attribs && attribs.dialog);
g_LobbyHandler = new LobbyHandler(attribs && attribs.dialog);
else
error("Could not load settings");
}