mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 9449
Fixing linker error on MOZ_UNICODE /r=shanjian, /sr=kin, /a=asa
This commit is contained in:
parent
22d2e7ef3c
commit
10c29f10f7
@ -4549,6 +4549,16 @@ LPCWSTR nsWindow::WindowPopupClassW()
|
||||
return className;
|
||||
}
|
||||
|
||||
LPCTSTR nsWindow::WindowClass()
|
||||
{
|
||||
return (NS_ConvertUCS2toUTF8(WindowClassW()).get());
|
||||
}
|
||||
|
||||
LPCTSTR nsWindow::WindowPopupClass()
|
||||
{
|
||||
return (NS_ConvertUCS2toUTF8(WindowPopupClassW()).get());
|
||||
}
|
||||
|
||||
#else
|
||||
LPCTSTR nsWindow::WindowClass()
|
||||
{
|
||||
|
@ -410,10 +410,9 @@ protected:
|
||||
#ifdef MOZ_UNICODE
|
||||
virtual LPCWSTR WindowClassW();
|
||||
virtual LPCWSTR WindowPopupClassW();
|
||||
#else
|
||||
#endif
|
||||
virtual LPCTSTR WindowClass();
|
||||
virtual LPCTSTR WindowPopupClass();
|
||||
#endif
|
||||
virtual DWORD WindowStyle();
|
||||
virtual DWORD WindowExStyle();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user