fixing macro syntax. HP flagged the construct as an error.

This commit is contained in:
jdunn%netscape.com 1999-06-14 21:16:05 +00:00
parent 5c352db65f
commit 2c11b7f1ed
5 changed files with 5 additions and 5 deletions

View File

@ -94,7 +94,7 @@ void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
// --- support -----------------
#define CSS_IF_COPY(val, type) \
if (aCopy.##val) (val) = new type(*(aCopy.##val));
if (aCopy.val) (val) = new type(*(aCopy.val));
nsCSSValueList::nsCSSValueList(void)
: mValue(),

View File

@ -94,7 +94,7 @@ void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
// --- support -----------------
#define CSS_IF_COPY(val, type) \
if (aCopy.##val) (val) = new type(*(aCopy.##val));
if (aCopy.val) (val) = new type(*(aCopy.val));
nsCSSValueList::nsCSSValueList(void)
: mValue(),

View File

@ -94,7 +94,7 @@ void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
// --- support -----------------
#define CSS_IF_COPY(val, type) \
if (aCopy.##val) (val) = new type(*(aCopy.##val));
if (aCopy.val) (val) = new type(*(aCopy.val));
nsCSSValueList::nsCSSValueList(void)
: mValue(),

View File

@ -94,7 +94,7 @@ void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
// --- support -----------------
#define CSS_IF_COPY(val, type) \
if (aCopy.##val) (val) = new type(*(aCopy.##val));
if (aCopy.val) (val) = new type(*(aCopy.val));
nsCSSValueList::nsCSSValueList(void)
: mValue(),

View File

@ -94,7 +94,7 @@ void nsCSSFont::List(FILE* out, PRInt32 aIndent) const
// --- support -----------------
#define CSS_IF_COPY(val, type) \
if (aCopy.##val) (val) = new type(*(aCopy.##val));
if (aCopy.val) (val) = new type(*(aCopy.val));
nsCSSValueList::nsCSSValueList(void)
: mValue(),