Append username to window title upon connecting to grid.

This commit is contained in:
Shyotl
2012-02-22 17:51:06 -06:00
parent c2da7f4570
commit 3d39e443fe
8 changed files with 36 additions and 0 deletions

View File

@@ -2514,6 +2514,11 @@ void LLWindowSDL::spawnWebBrowser(const std::string& escaped_url, bool async)
llinfos << "spawn_web_browser returning." << llendl;
}
void LLWindowSDL::setTitle(const std::string &title)
{
mWindowTitle = title;
SDL_WM_SetCaption(mWindowTitle.c_str(),mWindowTitle.c_str());
}
void *LLWindowSDL::getPlatformWindow()
{