mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
fix port bustage
This commit is contained in:
parent
ad3dc26b7d
commit
ea833bd9ce
@ -36,7 +36,7 @@
|
||||
*/
|
||||
#define LINE_MIN 0
|
||||
#define XCOORD_MIN 0x80000000
|
||||
#define LINE_MAX 0x7fffffff
|
||||
#define MY_LINE_MAX 0x7fffffff
|
||||
#define XCOORD_MAX 0x7fffffff
|
||||
class nsFrameOrigin {
|
||||
public:
|
||||
@ -575,7 +575,7 @@ nsFrameList::GetNextVisualFor(nsIFrame* aFrame) const
|
||||
if (!blockFrame || !iter)
|
||||
return nsnull;
|
||||
|
||||
nsFrameOrigin minOrig(LINE_MAX, XCOORD_MAX);
|
||||
nsFrameOrigin minOrig(MY_LINE_MAX, XCOORD_MAX);
|
||||
PRInt32 testLine, thisLine;
|
||||
|
||||
aFrame->GetRect(tempRect);
|
||||
|
@ -36,7 +36,7 @@
|
||||
*/
|
||||
#define LINE_MIN 0
|
||||
#define XCOORD_MIN 0x80000000
|
||||
#define LINE_MAX 0x7fffffff
|
||||
#define MY_LINE_MAX 0x7fffffff
|
||||
#define XCOORD_MAX 0x7fffffff
|
||||
class nsFrameOrigin {
|
||||
public:
|
||||
@ -575,7 +575,7 @@ nsFrameList::GetNextVisualFor(nsIFrame* aFrame) const
|
||||
if (!blockFrame || !iter)
|
||||
return nsnull;
|
||||
|
||||
nsFrameOrigin minOrig(LINE_MAX, XCOORD_MAX);
|
||||
nsFrameOrigin minOrig(MY_LINE_MAX, XCOORD_MAX);
|
||||
PRInt32 testLine, thisLine;
|
||||
|
||||
aFrame->GetRect(tempRect);
|
||||
|
@ -30,7 +30,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = layout
|
||||
LIBRARY_NAME = gkxulbase_s
|
||||
REQUIRES = xpcom string dom locale js widget view caps timer docshell uriloader necko editor htmlparser webshell pref intl txmgr gfx2 imglib2
|
||||
REQUIRES = xpcom string dom locale js widget view caps timer docshell uriloader necko editor htmlparser webshell pref intl txmgr gfx2 imglib2 unicharutil
|
||||
|
||||
CPPSRCS = \
|
||||
nsBulletinBoardLayout.cpp \
|
||||
|
Loading…
Reference in New Issue
Block a user