From 6d84299cc2a4a43a96b51133e4adc55397a8c96d Mon Sep 17 00:00:00 2001 From: troy Date: Fri, 22 May 1998 04:56:27 +0000 Subject: [PATCH] Changed reference to reflow command to a pointer to a reflow command --- layout/base/public/nsIFrame.h | 2 +- layout/generic/nsIFrame.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/base/public/nsIFrame.h b/layout/base/public/nsIFrame.h index a3a2d1c4842..d8c30e35637 100644 --- a/layout/base/public/nsIFrame.h +++ b/layout/base/public/nsIFrame.h @@ -82,7 +82,7 @@ enum nsReflowReason { */ struct nsReflowState { nsReflowReason reason; // the reason for the reflow - // nsReflowCommand& reflowCommand; // only used for incremental changes + nsReflowCommand* reflowCommand; // only used for incremental changes nsSize maxSize; // the available space in which to reflow }; diff --git a/layout/generic/nsIFrame.h b/layout/generic/nsIFrame.h index a3a2d1c4842..d8c30e35637 100644 --- a/layout/generic/nsIFrame.h +++ b/layout/generic/nsIFrame.h @@ -82,7 +82,7 @@ enum nsReflowReason { */ struct nsReflowState { nsReflowReason reason; // the reason for the reflow - // nsReflowCommand& reflowCommand; // only used for incremental changes + nsReflowCommand* reflowCommand; // only used for incremental changes nsSize maxSize; // the available space in which to reflow };