Added conversion from unicode to file systme charset, bug 24948, r=ftang.

git-svn-id: svn://10.0.0.236/trunk@59266 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nhotta%netscape.com
2000-01-31 21:23:04 +00:00
parent dbaff41d85
commit 491121684d

View File

@@ -23,6 +23,7 @@
#include "nsMacWindow.h"
#include "nsMacEventHandler.h"
#include "nsMacMessageSink.h"
#include "nsMacControl.h"
#include "nsIServiceManager.h" // for drag and drop
#include "nsWidgetsCID.h"
@@ -716,8 +717,8 @@ PRBool nsMacWindow::OnPaint(nsPaintEvent &event)
NS_IMETHODIMP nsMacWindow::SetTitle(const nsString& aTitle)
{
Str255 title;
title[0] = aTitle.Length();
aTitle.ToCString((char*)title + 1, sizeof(title) - 1);
// unicode to file system charset
nsMacControl::StringToStr255(aTitle, title);
::SetWTitle(mWindowPtr, title);
return NS_OK;
}