From 3f116acde8269b0bdfb81524d68ede4524ce5c99 Mon Sep 17 00:00:00 2001 From: "davidmc%netscape.com" Date: Mon, 19 Apr 1999 22:12:14 +0000 Subject: [PATCH] reorder morkCell member construction to quell Unix warmings. --- db/mork/src/morkCell.h | 2 +- mailnews/db/mork/src/morkCell.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/db/mork/src/morkCell.h b/db/mork/src/morkCell.h index 8f3581698ee..80ac37c671f 100644 --- a/db/mork/src/morkCell.h +++ b/db/mork/src/morkCell.h @@ -39,7 +39,7 @@ public: morkAtom* mCell_Atom; // content in this cell public: - morkCell() : mCell_Atom( 0 ), mCell_Delta( 0 ) { } + morkCell() : mCell_Delta( 0 ), mCell_Atom( 0 ) { } morkCell(const morkCell& c) : mCell_Atom( c.mCell_Atom ), mCell_Delta( c.mCell_Delta ) { } diff --git a/mailnews/db/mork/src/morkCell.h b/mailnews/db/mork/src/morkCell.h index 8f3581698ee..80ac37c671f 100644 --- a/mailnews/db/mork/src/morkCell.h +++ b/mailnews/db/mork/src/morkCell.h @@ -39,7 +39,7 @@ public: morkAtom* mCell_Atom; // content in this cell public: - morkCell() : mCell_Atom( 0 ), mCell_Delta( 0 ) { } + morkCell() : mCell_Delta( 0 ), mCell_Atom( 0 ) { } morkCell(const morkCell& c) : mCell_Atom( c.mCell_Atom ), mCell_Delta( c.mCell_Delta ) { }