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
This commit is contained in:
Ray Greenwell
2006-07-25 02:19:44 +00:00
parent 4d6166dc12
commit 878129f75d
+2 -2
View File
@@ -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;