From 1cef7222c8df2b7aebbb887d6465611a02f3eb4d Mon Sep 17 00:00:00 2001 From: "jdunn%netscape.com" Date: Thu, 1 Jul 1999 00:34:24 +0000 Subject: [PATCH] remove ##, since they are not needed. (since they break HP) git-svn-id: svn://10.0.0.236/trunk@37615 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/gtk/nsWidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mozilla/widget/src/gtk/nsWidget.cpp b/mozilla/widget/src/gtk/nsWidget.cpp index 2639bb1bef3..7d565250aa5 100644 --- a/mozilla/widget/src/gtk/nsWidget.cpp +++ b/mozilla/widget/src/gtk/nsWidget.cpp @@ -40,9 +40,9 @@ #define NSCOLOR_TO_GDKCOLOR(n,g) \ PR_BEGIN_MACRO \ - g ## .red = 256 * NS_GET_R(n); \ - g ## .green = 256 * NS_GET_G(n); \ - g ## .blue = 256 * NS_GET_B(n); \ + g.red = 256 * NS_GET_R(n); \ + g.green = 256 * NS_GET_G(n); \ + g.blue = 256 * NS_GET_B(n); \ PR_END_MACRO // Taken from nsRenderingContextGTK.cpp