зеркало из https://github.com/mozilla/pjs.git
fixed menu casting problem.
This commit is contained in:
Родитель
014f0e5622
Коммит
39d90cccaa
|
@ -126,7 +126,7 @@ NS_METHOD nsMenu::Create(nsIWidget *aParent,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mWnd = CreatePopupMenu();
|
mWnd = (HMENU)CreatePopupMenu();
|
||||||
|
|
||||||
if (aParent) {
|
if (aParent) {
|
||||||
aParent->AddChild(this);
|
aParent->AddChild(this);
|
||||||
|
|
|
@ -126,7 +126,7 @@ NS_METHOD nsMenuBar::Create(nsIWidget *aParent,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mWnd = CreatePopupMenu();
|
mWnd = (HMENU)CreateMenu();
|
||||||
|
|
||||||
if (aParent) {
|
if (aParent) {
|
||||||
aParent->AddChild(this);
|
aParent->AddChild(this);
|
||||||
|
|
|
@ -130,7 +130,7 @@ NS_METHOD nsPopUpMenu::Create(nsIWidget *aParent,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mWnd = CreatePopupMenu();
|
mWnd = (HMENU)CreatePopupMenu();
|
||||||
|
|
||||||
if (aParent) {
|
if (aParent) {
|
||||||
aParent->AddChild(this);
|
aParent->AddChild(this);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче