mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1149035 - Make nsXULPopupManager::PopupResized take a LayoutDeviceIntSize param instead of a unit-less nsIntSize. r=roc
This commit is contained in:
parent
2268b8c0ad
commit
8a4d1cc7af
@ -471,7 +471,7 @@ nsXULPopupManager::PopupMoved(nsIFrame* aFrame, nsIntPoint aPnt)
|
||||
}
|
||||
|
||||
void
|
||||
nsXULPopupManager::PopupResized(nsIFrame* aFrame, nsIntSize aSize)
|
||||
nsXULPopupManager::PopupResized(nsIFrame* aFrame, LayoutDeviceIntSize aSize)
|
||||
{
|
||||
nsMenuPopupFrame* menuPopupFrame = GetPopupToMoveOrResize(aFrame);
|
||||
if (!menuPopupFrame)
|
||||
@ -490,8 +490,8 @@ nsXULPopupManager::PopupResized(nsIFrame* aFrame, nsIntSize aSize)
|
||||
// as 'width' and 'height' attributes on the popup.
|
||||
nsPresContext* presContext = menuPopupFrame->PresContext();
|
||||
|
||||
nsIntSize newCSS(presContext->DevPixelsToIntCSSPixels(aSize.width),
|
||||
presContext->DevPixelsToIntCSSPixels(aSize.height));
|
||||
CSSIntSize newCSS(presContext->DevPixelsToIntCSSPixels(aSize.width),
|
||||
presContext->DevPixelsToIntCSSPixels(aSize.height));
|
||||
|
||||
nsIContent* popup = menuPopupFrame->GetContent();
|
||||
nsAutoString width, height;
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "nsStyleConsts.h"
|
||||
#include "nsWidgetInitData.h"
|
||||
#include "mozilla/Attributes.h"
|
||||
#include "Units.h"
|
||||
|
||||
// X.h defines KeyPress
|
||||
#ifdef KeyPress
|
||||
@ -531,9 +532,9 @@ public:
|
||||
|
||||
/**
|
||||
* Indicate that the popup associated with aView has been resized to the
|
||||
* specified screen width and height.
|
||||
* given device pixel size aSize.
|
||||
*/
|
||||
void PopupResized(nsIFrame* aFrame, nsIntSize ASize);
|
||||
void PopupResized(nsIFrame* aFrame, mozilla::LayoutDeviceIntSize aSize);
|
||||
|
||||
/**
|
||||
* Called when a popup frame is destroyed. In this case, just remove the
|
||||
|
@ -999,7 +999,7 @@ nsView::WindowResized(nsIWidget* aWidget, int32_t aWidth, int32_t aHeight)
|
||||
else if (IsPopupWidget(aWidget)) {
|
||||
nsXULPopupManager* pm = nsXULPopupManager::GetInstance();
|
||||
if (pm) {
|
||||
pm->PopupResized(mFrame, nsIntSize(aWidth, aHeight));
|
||||
pm->PopupResized(mFrame, LayoutDeviceIntSize(aWidth, aHeight));
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user