b=479106; enable SetForegroundWindow call for CE, not just mobile; r=dougt

This commit is contained in:
Vladimir Vukicevic 2009-03-08 22:06:59 -07:00
Родитель 96ffc970b9
Коммит 5fc5d24251
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -1658,9 +1658,7 @@ NS_METHOD nsWindow::Show(PRBool bState)
switch (mSizeMode) {
#ifdef WINCE
case nsSizeMode_Maximized :
#ifdef WINCE_WINDOWS_MOBILE
::SetForegroundWindow(mWnd);
#endif
::ShowWindow(mWnd, SW_SHOWMAXIMIZED);
break;
// use default for nsSizeMode_Minimized on Windows CE
@ -1674,7 +1672,7 @@ NS_METHOD nsWindow::Show(PRBool bState)
#endif
default:
if (CanTakeFocus()) {
#ifdef WINCE_WINDOWS_MOBILE
#ifdef WINCE
::SetForegroundWindow(mWnd);
#endif
::ShowWindow(mWnd, SW_SHOWNORMAL);