From 878129f75d14f57c92a0af2903a3852cab95b201 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 25 Jul 2006 02:19:44 +0000 Subject: [PATCH] Made a parameter name more descriptive (as well as reversing the meaning...). git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4290 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/NetUtil.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/util/NetUtil.as b/src/as/com/threerings/util/NetUtil.as index 1b47fed06..90d35d328 100644 --- a/src/as/com/threerings/util/NetUtil.as +++ b/src/as/com/threerings/util/NetUtil.as @@ -10,10 +10,10 @@ public class NetUtil * having to worry about SecurityErrors in various conditions. */ public static function navigateToURL ( - url :String, newWindow :Boolean = false) :void + url :String, preferSameWindowOrTab :Boolean = true) :void { var ureq :URLRequest = new URLRequest(url); - if (!newWindow) { + if (preferSameWindowOrTab) { try { flash.net.navigateToURL(ureq, "_self"); return;