Fix uninitialized variable pointed out by pkw@us.ibm.com. No bug. Not part of the default build.

git-svn-id: svn://10.0.0.236/trunk@141005 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blizzard%redhat.com
2003-04-10 22:11:27 +00:00
parent 561332ed47
commit 7d56d7877c

View File

@@ -2693,7 +2693,7 @@ PRBool
is_mouse_in_window (GdkWindow* aWindow, gdouble aMouseX, gdouble aMouseY)
{
gint x = 0;
gint y = y;
gint y = 0;
gint w, h;
gint offsetX = 0;