mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 18:08:58 +00:00
Cleaned up ctor initializer order to quite down compiler warnings
This commit is contained in:
parent
964e056ebd
commit
f967462f7d
@ -106,7 +106,11 @@ protected:
|
||||
struct TabInfo {
|
||||
TabInfo( nsIContent * inContent, PRBool inCollapsed,
|
||||
const nsRect &inBounds = nsRect(0,0,0,0))
|
||||
: mToolbar(inContent), mCollapsed(inCollapsed), mBoundingRect(inBounds) { }
|
||||
: mToolbar(inContent),
|
||||
mBoundingRect(inBounds),
|
||||
mCollapsed(inCollapsed)
|
||||
{
|
||||
}
|
||||
|
||||
void SetBounds(const nsRect &inBounds) { mBoundingRect = inBounds; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user