From 2a9176c01063dba5c85f634c2066bc9239fe5fbc Mon Sep 17 00:00:00 2001 From: Mark Finkle Date: Mon, 19 Oct 2009 17:21:23 -0400 Subject: [PATCH] [mq]: findbaroff --- toolkit/content/Geometry.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolkit/content/Geometry.jsm b/toolkit/content/Geometry.jsm index 2ad4ce197de0..0bac5e7a2d26 100644 --- a/toolkit/content/Geometry.jsm +++ b/toolkit/content/Geometry.jsm @@ -95,7 +95,7 @@ let Util = { * * Any method that takes an x and y may also take a point. */ -Point = function Point(x, y) { +function Point(x, y) { this.set(x, y); }