Closed
Bug 825278
Opened 12 years ago
Closed 12 years ago
don't use nsISupportsArray for m_listeners
Categories
(Core :: Printing: Setup, defect)
Core
Printing: Setup
Tracking
()
RESOLVED
FIXED
mozilla20
People
(Reporter: tbsaunde, Assigned: tbsaunde)
References
Details
Attachments
(1 file)
No description provided.
Assignee | ||
Comment 1•12 years ago
|
||
Attachment #696348 -
Flags: review?(roc)
Attachment #696348 -
Flags: review?(roc) → review+
Comment 2•12 years ago
|
||
Instead of this:
uint32_t count = m_listenerList.Count();
for (uint32_t i = count - 1; i < count; i --)
I would prefer:
uint32_t i = m_listenerList.Count();
while (i--)
Assignee | ||
Comment 3•12 years ago
|
||
Comment 4•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla20
You need to log in
before you can comment on or make changes to this bug.
Description
•