Closed
Bug 289051
Opened 20 years ago
Closed 20 years ago
privatePrintScreenMessage called at wrong time
Categories
(SeaMonkey :: General, defect)
SeaMonkey
General
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: lvcipriani, Unassigned)
References
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2
mozilla/modules/plugin/samples/unixprinting/printplugin.c: extra
semicolon near line 115
while(XCheckTypedWindowEvent(This->display, This->window,
Expose, xevent));
privatePrintScreenMessage(This);
should be:
while(XCheckTypedWindowEvent(This->display, This->window,
Expose, xevent))
privatePrintScreenMessage(This);
Reproducible: Always
Comment 1•20 years ago
|
||
Fixed. http://bonsai.mozilla.org/cvsquery.cgi?treeid=default&module=all&branch=HEAD&branchtype=match&dir=&file=mozilla%2Fmodules%2Fplugin%2Fsamples%2Funixprinting%2Fprintplugin.c&filetype=match&who=bzbarsky%25mit.edu&whotype=match&sortby=Date&hours=2&date=month&mindate=&maxdate=&cvsroot=%2Fcvsroot
Status: UNCONFIRMED → RESOLVED
Closed: 20 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•