r=pedemonte, sr=blizzard (platform specific), a=mkaply
OS/2 only - limit length of titlebar text to overcome OS bug
This commit is contained in:
mkaply%us.ibm.com 2004-11-03 13:57:16 +00:00
Родитель fc63af3f2a
Коммит 3f10ee9003
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -3391,6 +3391,9 @@ NS_METHOD nsWindow::SetTitle(const nsAString& aTitle)
nsAutoCharBuffer title;
PRInt32 titleLength;
WideCharToMultiByte(0, uchtemp, aTitle.Length(), title, titleLength);
if (titleLength > MAX_TITLEBAR_LENGTH) {
title.get()[MAX_TITLEBAR_LENGTH] = '\0';
}
::WinSetWindowText(GetMainWindow(), title.get());
if (mChromeHidden) {
/* If the chrome is hidden, set the text of the titlebar directly */