Commit cc3e4edf authored by Zach H's avatar Zach H
Browse files

rename function

parent e2be1cd8
......@@ -298,7 +298,7 @@ void ChatView::appendMessage(QString message, QString sender, UserLevelFlags use
}
else if (index == mentionFirstIndex)
{
if (tabSupervisor->isALocalGame())
if (tabSupervisor->getIsLocalGame())
{
cursor.insertText("@");
message = message.mid(1);
......
......@@ -68,7 +68,7 @@ public:
void start(const ServerInfo_User &userInfo);
void startLocal(const QList<AbstractClient *> &_clients);
void stop();
bool isALocalGame() const { return isLocalGame; }
bool getIsLocalGame() const { return isLocalGame; }
int getGameCount() const { return gameTabs.size(); }
TabUserLists *getUserListsTab() const { return tabUserLists; }
ServerInfo_User *getUserInfo() const { return userInfo; }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment