Loading widget/cocoa/nsChildView.mm +1 −2 Original line number Diff line number Diff line Loading @@ -1752,8 +1752,7 @@ bool nsChildView::PaintWindow(nsIntRegion aRegion) void nsChildView::ReportMoveEvent() { if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); } void nsChildView::ReportSizeEvent() Loading widget/cocoa/nsCocoaWindow.mm +1 −2 Original line number Diff line number Diff line Loading @@ -1721,8 +1721,7 @@ nsCocoaWindow::ReportMoveEvent() UpdateBounds(); // Dispatch the move event to Gecko if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); mInReportMoveEvent = false; Loading widget/gtk/nsWindow.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -2368,8 +2368,7 @@ nsWindow::OnConfigureEvent(GtkWidget *aWidget, GdkEventConfigure *aEvent) // XXX mozilla will invalidate the entire window after this move // complete. wtf? if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); return FALSE; } Loading widget/qt/nsWindow.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -872,8 +872,8 @@ nsWindow::moveEvent(QMoveEvent* aEvent) return nsEventStatus_eIgnore; } bool moved = mWidgetListener->WindowMoved(this, aEvent->pos().x(), aEvent->pos().y()); return moved ? nsEventStatus_eConsumeNoDefault : nsEventStatus_eIgnore; NotifyWindowMoved(aEvent->pos().x(), aEvent->pos().y()); return nsEventStatus_eConsumeNoDefault; } nsEventStatus Loading widget/windows/nsWindow.cpp +3 −5 Original line number Diff line number Diff line Loading @@ -5798,10 +5798,10 @@ void nsWindow::OnWindowPosChanged(WINDOWPOS* wp) break; case nsSizeMode_Maximized: PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: nsSizeMode_Maximized\n"); ("*** mSizeMode: nsSizeMode_Maximized\n")); break; default: PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: ??????\n"); PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: ??????\n")); break; }; #endif Loading @@ -5825,9 +5825,7 @@ void nsWindow::OnWindowPosChanged(WINDOWPOS* wp) mBounds.x = wp->x; mBounds.y = wp->y; if (mWidgetListener) { mWidgetListener->WindowMoved(this, wp->x, wp->y); } NotifyWindowMoved(wp->x, wp->y); } // Handle window size changes Loading Loading
widget/cocoa/nsChildView.mm +1 −2 Original line number Diff line number Diff line Loading @@ -1752,8 +1752,7 @@ bool nsChildView::PaintWindow(nsIntRegion aRegion) void nsChildView::ReportMoveEvent() { if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); } void nsChildView::ReportSizeEvent() Loading
widget/cocoa/nsCocoaWindow.mm +1 −2 Original line number Diff line number Diff line Loading @@ -1721,8 +1721,7 @@ nsCocoaWindow::ReportMoveEvent() UpdateBounds(); // Dispatch the move event to Gecko if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); mInReportMoveEvent = false; Loading
widget/gtk/nsWindow.cpp +1 −2 Original line number Diff line number Diff line Loading @@ -2368,8 +2368,7 @@ nsWindow::OnConfigureEvent(GtkWidget *aWidget, GdkEventConfigure *aEvent) // XXX mozilla will invalidate the entire window after this move // complete. wtf? if (mWidgetListener) mWidgetListener->WindowMoved(this, mBounds.x, mBounds.y); NotifyWindowMoved(mBounds.x, mBounds.y); return FALSE; } Loading
widget/qt/nsWindow.cpp +2 −2 Original line number Diff line number Diff line Loading @@ -872,8 +872,8 @@ nsWindow::moveEvent(QMoveEvent* aEvent) return nsEventStatus_eIgnore; } bool moved = mWidgetListener->WindowMoved(this, aEvent->pos().x(), aEvent->pos().y()); return moved ? nsEventStatus_eConsumeNoDefault : nsEventStatus_eIgnore; NotifyWindowMoved(aEvent->pos().x(), aEvent->pos().y()); return nsEventStatus_eConsumeNoDefault; } nsEventStatus Loading
widget/windows/nsWindow.cpp +3 −5 Original line number Diff line number Diff line Loading @@ -5798,10 +5798,10 @@ void nsWindow::OnWindowPosChanged(WINDOWPOS* wp) break; case nsSizeMode_Maximized: PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: nsSizeMode_Maximized\n"); ("*** mSizeMode: nsSizeMode_Maximized\n")); break; default: PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: ??????\n"); PR_LOG(gWindowsLog, PR_LOG_ALWAYS, ("*** mSizeMode: ??????\n")); break; }; #endif Loading @@ -5825,9 +5825,7 @@ void nsWindow::OnWindowPosChanged(WINDOWPOS* wp) mBounds.x = wp->x; mBounds.y = wp->y; if (mWidgetListener) { mWidgetListener->WindowMoved(this, wp->x, wp->y); } NotifyWindowMoved(wp->x, wp->y); } // Handle window size changes Loading