Closed
Bug 130965
Opened 23 years ago
Closed 23 years ago
Change assert to warning in nsBrowserWindow::SetFocus()
Categories
(Core Graveyard :: Viewer App, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.0
People
(Reporter: kinmoz, Assigned: kinmoz)
Details
Attachments
(1 file)
621 bytes,
patch
|
karnaze
:
review+
attinasi
:
superreview+
asa
:
approval+
|
Details | Diff | Splinter Review |
I'm sure others in layout are incredibly annoyed by this assertion that fires
and displays a dialog whenever you leave the viewer window during win32
debugging. I'd like to change the assertion to a warning.
Can I get an r= and sr= from one of you on the CC list so that I can request
drivers for a checkin?
Index: webshell/tests/viewer/nsBrowserWindow.cpp
===================================================================
RCS file: /cvsroot/mozilla/webshell/tests/viewer/nsBrowserWindow.cpp,v
retrieving revision 3.397
diff -u -r3.397 nsBrowserWindow.cpp
--- webshell/tests/viewer/nsBrowserWindow.cpp 6 Mar 2002 07:48:33 -0000
3.397
+++ webshell/tests/viewer/nsBrowserWindow.cpp 14 Mar 2002 18:59:58 -0000
@@ -408,7 +408,7 @@
NS_IMETHODIMP nsBrowserWindow::SetFocus()
{
//XXX First Check In
- NS_ASSERTION(PR_FALSE, "Not Yet Implemented");
+ NS_WARNING("Not Yet Implemented");
return NS_OK;
}
Comment 2•23 years ago
|
||
Comment on attachment 74121 [details] [diff] [review]
Patch Rev 1
r=karnaze
Attachment #74121 -
Flags: review+
Comment 3•23 years ago
|
||
Comment on attachment 74121 [details] [diff] [review]
Patch Rev 1
sr=attinasi - assuming you put this on a branch and had QA thoroughly test it,
of course ;)
Attachment #74121 -
Flags: superreview+
Comment 4•23 years ago
|
||
Comment on attachment 74121 [details] [diff] [review]
Patch Rev 1
a=asa (on behalf of drivers) for checkin to the 1.0 trunk
Attachment #74121 -
Flags: approval+
Status: NEW → ASSIGNED
Priority: -- → P3
Target Milestone: --- → mozilla1.0
Fix checked into TRUNK:
mozilla/webshell/tests/viewer/nsBrowserWindow.cpp revision 3.398
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•17 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•