tonyr%fbdesigns.com
f3f243d7b7
First Checked In.
1999-11-18 23:14:05 +00:00
tonyr%fbdesigns.com
2a44163fe0
First Checked In.
1999-11-18 23:03:36 +00:00
colin%theblakes.com
1ea5ca50ab
Don't define EXTRA_DSO_LDOPTS to EXTRA_LIBS and more. r=shaver
1999-11-18 22:54:09 +00:00
colin%theblakes.com
da9b69d818
Add MOZ_TIMER_LIBS to the link. r=shaver
1999-11-18 22:49:59 +00:00
tonyr%fbdesigns.com
99a98f0e0e
First Checked In.
1999-11-18 22:48:04 +00:00
briano%netscape.com
102052b30d
Automated update
1999-11-18 22:45:23 +00:00
colin%theblakes.com
2d0364e8c7
Do not define MOZ_MONOLITHIC_TOOLKIT for OpenVMS
1999-11-18 22:38:51 +00:00
larryh%netscape.com
ea878668ca
BugZilla: 19247
1999-11-18 22:23:00 +00:00
rods%netscape.com
e782e5e65a
initial check in, not in the build
1999-11-18 22:14:26 +00:00
ducarroz%netscape.com
d964874e77
Fix for bug 18974 & bug 15238. We need to use the default identity when no identity is specified. r=alecf
1999-11-18 21:57:06 +00:00
erik%netscape.com
e8a7c02800
Updating local .cvsignore file. Does not affect build.
1999-11-18 21:49:12 +00:00
larryh%netscape.com
dd4225fa8a
BugZilla: 19247, fix declaration of _PR_MD_GetRandomNoise()
1999-11-18 21:38:39 +00:00
sdagley%netscape.com
f89f1c2c89
Fix Mac bustage. Make PR_GetRandomNoise() compile. Don't know about working yet.
1999-11-18 21:16:51 +00:00
rhp%netscape.com
e44e9c7b65
Cleanup of free calls - No bug - r: bienvenu
1999-11-18 21:12:49 +00:00
evaughan%netscape.com
579a9d2af2
1) Changed box to use a linked list instead of a fixed array. -r Hyatt
...
2) Cleaned up some of the preference panels. -r Matt
1999-11-18 21:05:43 +00:00
brade%netscape.com
65702256d1
fix original size/custom size toggling/setting. bug #14750 (r=kin@netscape.com)
1999-11-18 20:53:48 +00:00
valeski%netscape.com
aaa223115e
fixing crasher introduced when new Setter*() were dropped in last night. we now set the channel's url member *before* calling the set routines.
1999-11-18 20:51:05 +00:00
mcafee%netscape.com
cdd368478b
Removing const to match IDL spec, fixes Solaris/CC. r=mscott
1999-11-18 20:47:57 +00:00
waterson%netscape.com
833fe7f7f8
Fix event listener leak in idlc-generated code. r=joki
1999-11-18 20:39:58 +00:00
waterson%netscape.com
c38842c56b
Fix event listener leak in code that is generated to take functions. Fix to generate new NPL 1.1 license. r=joki
1999-11-18 20:38:43 +00:00
brade%netscape.com
e727552d0d
during CloneAttributes, delete all the nodes attached (not half of them); discovered when fixing bug #14750 ; r=kin@netscape.com
1999-11-18 20:34:15 +00:00
larryh%netscape.com
6e77f99f56
BugZilla: 19247. PR_GetRandomNoise()
1999-11-18 20:29:17 +00:00
colin%theblakes.com
5eeae9d6cc
Add MOZ_COMPONENT_LIBS. r=jdunn
1999-11-18 20:23:31 +00:00
brendan%mozilla.org
6edd393ab6
- Add JS_HAS_FUN_EXPR_STMT jsconfig.h macro and use it to ifdef a special case explicitly specified by ECMA ed. 3 to be an error: a function expression that's a statement (not at top-level). This allows one to wrap functions in if and else statements and conditionally define them.
...
(More work is needed to conform to ECMA ed. 3 by removing Closure objects; also we want more efficient closure calling, soon.)
- Move mislocated call to js_FoldConstants from jsemit.c's js_EmitTree, the TOK_FUNCTION case, back to jsparse.c. This avoids redundant fold-walks over non-top-level functions. Folding should be done at tree-gen time, not at code-gen time.
- Eliminate dead code in if-else and ?: when folding constants.
- Release tempPool arena space before early return on error in js_FoldConstants, just to be nice (all arena space gets released eventually, when the compiler finishes).
1999-11-18 20:19:56 +00:00
valeski%netscape.com
aa8107de4d
adding new param to newChannelCall to reflect the new api
1999-11-18 20:09:54 +00:00
valeski%netscape.com
7a63151a46
typo. we need to be allocating the size of the struct, not the pointer to the struct.
1999-11-18 20:05:15 +00:00
colin%theblakes.com
19b8c75f3a
build gtksuperwin if MOZ_ENABLE_GTK and MOZ_MONOLITHIC_TOOLKIT are both set. r=jdunn
1999-11-18 19:50:45 +00:00
akkana%netscape.com
19b36f49a8
Improve the problem of excessive whitespace around <pre> quotes in
...
plaintext mail (r=mcafee).
Also, 19237: an initial fix for html quoting (html source being
inserted outside the blockquote).
1999-11-18 19:43:14 +00:00
kin%netscape.com
9ce2f08c0b
Fix for bug #17989 : Selection AutoScrolling broken when using GFX Scrollbars
...
layout/base/src/nsRangeList.cpp
- Added ConstrainFrameAndPointToAnchorSubtree() and various utility
methods.
- Modified HandleDrag() to call ConstrainFrameAndPointToAnchorSubtree().
layout/html/base/src/nsFrame.cpp
- Modified GetContentAndOffsetFromPoint() to skip over generated
and anonymous content frames.
layout/html/base/src/nsGfxScrollFrame.cpp
layout/html/base/src/nsGfxScrollFrame.h
- Override the default nsFrame::GetContentAndOffsetsFromPoint()
implementation with a version that calls
mInner->GetContentAndOffsetsFromPoint(). This prevents the
scrollbar frames from being included in the search.
view/src/nsScrollPortView.cpp
- Fixed bug where GetContainerSize() was returning the size of the
ScrollPortView instead of the ScrolledView.
r=evaughan@netscape.com
1999-11-18 19:40:52 +00:00
akkana%netscape.com
e7d9c4d3be
Use Recycle to free nsStrings; and fix a warning
1999-11-18 19:40:30 +00:00
akkana%netscape.com
b51fc5c63e
Contribution from mozilla@bucksch.org to improve anchor and img tags
...
in formatted mode (r=akkana).
Also some minor improvements to handling of blank lines in pre tags,
to get rid of extra blank lines in plaintext mail (r=mcafee).
1999-11-18 19:39:47 +00:00
blizzard%redhat.com
30bc193c27
we don't need to listen to events on the top level window
1999-11-18 19:36:28 +00:00
rhp%netscape.com
ae6e21cb42
Small fix for a useful test program - NOT PART OF THE BUILD
1999-11-18 19:29:11 +00:00
varada%netscape.com
b25ebc5986
fix for bug #18332 and other clean ups
1999-11-18 17:34:18 +00:00
terry%mozilla.org
04b27d57fa
Patch by Tom Schutter <tom@platte.com>: Added some more doc, fixed product description.
1999-11-18 17:29:58 +00:00
erik%netscape.com
55c83355da
Grabbing the next available ID. Does not affect build.
1999-11-18 16:45:59 +00:00
dcone%netscape.com
1b778eadc9
Thickness of side is now checked. Fixed bug 14944. r=rods
1999-11-18 16:03:45 +00:00
shaver%netscape.com
0fe6c3f505
Fix some MLK and FMR badness.
...
Use nsCOMPtr to manage services (thank you dp, thank you).
Only push context on stack when actually executing JS via JSAPI.
Use nsXPIDLCString to simplify memory management (thank you waterson,
thank you).
Use generic module stuff.
r=fur,jband
1999-11-18 15:39:28 +00:00
rods%netscape.com
6ace09adfd
removing extra box sizing code that is not needed.
...
computed border and padding is always added for Standard and only for explicit w/h for NavQuirks.
r=dcone bug=18448
1999-11-18 15:15:07 +00:00
dcone%netscape.com
3c24d927ea
Move the dotted and dashed rouned corner code to fall into solid until it is supported by code
...
r=rods. Bug fixed 13944
1999-11-18 15:09:02 +00:00
ducarroz%netscape.com
b871113206
Fix for bug 16413. Use parser call RemoveDuplicateAddresses when building recipients list. R=mscott
1999-11-18 15:06:56 +00:00
Jerry.Kirk%Nexwarecorp.com
97ac13763b
Added a few comments to remind me whats going on.
...
r=kedl
1999-11-18 13:03:16 +00:00
Jerry.Kirk%Nexwarecorp.com
c62b7e52d6
turning off automatic generation of BMP files for each image drawn.
...
r=kedl
1999-11-18 13:02:21 +00:00
Jerry.Kirk%Nexwarecorp.com
9e268e3cca
Added some debug info to UpdateWidgeDamage , still tryin to track down
...
the reason for the extra draws I see under Photon.
r=kedl
1999-11-18 12:49:43 +00:00
Jerry.Kirk%Nexwarecorp.com
bb1ad0f46e
Check for mContext != NULL in RawDraw.. This fixes a crash that occurs
...
because we try to do a draw of a window after it is destroyed. Not sure
why this is happening, I think its Photon that wants the draw.
Also took out mFrame changes to size of the dialog in GetClientBounds. This
was causing several dialog to be clipped.
r=kedl
1999-11-18 12:48:43 +00:00
Jerry.Kirk%Nexwarecorp.com
f773015ce3
Added new static memer mModalCount to be used when a modal dialog
...
is created. Now calling PtModalStart/End, this fixed the problem with
widgets not highlighting properly when the mouse moved over them on a
modal dialog.
r=kedl
1999-11-18 12:43:43 +00:00
mscott%netscape.com
a34b08b1d6
minor tweak to properly remove everything after (and including) the ? from a mailto url when extracting
...
the to part.
1999-11-18 10:16:26 +00:00
mscott%netscape.com
61f7f1b342
remove these obsolete files.
1999-11-18 09:56:39 +00:00
mscott%netscape.com
14e52f7738
Fix clobber unix build. don't build uri dispatcher anymore.
1999-11-18 09:55:44 +00:00
waterson%netscape.com
b44055e48a
Back off on nsCOMPtr use for mInner because of funky release
...
sequence. Fixes crash on shutdown.
1999-11-18 09:44:29 +00:00