Closed
Bug 510872
Opened 17 years ago
Closed 16 years ago
Xulrunner fails to build in Qt mode.
Categories
(Core Graveyard :: Widget: Qt, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.9.3a1
People
(Reporter: tobias.hunger, Assigned: tobias.hunger)
References
Details
Attachments
(1 file, 2 obsolete files)
|
1.49 KB,
patch
|
mfinkle
:
review+
|
Details | Diff | Splinter Review |
ulrunner can not be build for the Qt toolkit. The attached patch fixes this issue.
Qt is NPOTB, so any freezes do not apply.
Attachment #394803 -
Flags: review?(mark.finkle)
Comment 1•16 years ago
|
||
I've fixed part of it at bug 493280 (font issue).
About scroll issue, it comes from bug 507334.
So I think you should refer:
http://hg.mozilla.org/mozilla-central/rev/e6034ded61fd
then follow it like:
- QRect rect(aSources[i].x, aSources[i].y,
- aSources[i].width, aSources[i].height);
+ const nsIntRect& r = aDestRects[i];
+ QRect rect(r.x - aDelta.x, r.y - aDelta.y, r.width, r.height);
| Assignee | ||
Comment 2•16 years ago
|
||
I have updated the patch according to your comment.
Attachment #395593 -
Flags: review+
Updated•16 years ago
|
Attachment #394803 -
Attachment is obsolete: true
Attachment #394803 -
Flags: review?(mark.finkle)
Comment 3•16 years ago
|
||
Comment on attachment 395593 [details] [diff] [review]
updated Qt build fix.
> - const nsIntRect& aSource,
> + const nsTArray<nsIntRect>& aSources,
aSources should be renamed to aDestRects to avoid confusing.
Attachment #395593 -
Flags: review+ → review?(vladimir)
| Assignee | ||
Comment 4•16 years ago
|
||
Attachment #395793 -
Flags: review?
| Assignee | ||
Comment 5•16 years ago
|
||
Comment on attachment 395793 [details] [diff] [review]
Qt build fix with updated variable names.
This version includes the variable renaming suggested earlier.
| Assignee | ||
Updated•16 years ago
|
Attachment #395593 -
Attachment is obsolete: true
Attachment #395593 -
Flags: review?(vladimir)
| Assignee | ||
Comment 6•16 years ago
|
||
Ping?
Comment 7•16 years ago
|
||
Did you read this document?:
https://developer.mozilla.org/en/Hacking_Mozilla#Getting_Reviews
You should enter a email address of the module owner or a peer reviewer, not your's.
You can find a reviewer from:
http://www.mozilla.org/owners.html
I'm just only a passerby, not a mozilla developer.
| Assignee | ||
Comment 8•16 years ago
|
||
I did not enter myself, I just did not enter any name, hoping that bugzilla will know whom to contact.
I am just listed as the review requestor (from what I understand).
| Assignee | ||
Comment 9•16 years ago
|
||
Comment on attachment 395793 [details] [diff] [review]
Qt build fix with updated variable names.
Request Mark to review this... he will know what to do:-)
Attachment #395793 -
Flags: review? → review?(mark.finkle)
Comment 10•16 years ago
|
||
Comment on attachment 395793 [details] [diff] [review]
Qt build fix with updated variable names.
Fixes build issues and runs Fennec
Attachment #395793 -
Flags: review?(mark.finkle) → review+
Updated•16 years ago
|
Keywords: checkin-needed
Comment 11•16 years ago
|
||
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Updated•10 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•