1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-15 21:43:32 +02:00

Rename an oddly named variable in util.readFromClipboard.

This commit is contained in:
Doug Kearns
2009-03-07 02:40:20 +11:00
parent 31a5605158
commit 8c2adfefb1

View File

@@ -577,7 +577,7 @@ const util = { //{{{
*/ */
readFromClipboard: function readFromClipboard() readFromClipboard: function readFromClipboard()
{ {
let url; let str;
try try
{ {
@@ -599,12 +599,12 @@ const util = { //{{{
if (data) if (data)
{ {
data = data.value.QueryInterface(Ci.nsISupportsString); data = data.value.QueryInterface(Ci.nsISupportsString);
url = data.data.substring(0, dataLen.value / 2); str = data.data.substring(0, dataLen.value / 2);
} }
} }
catch (e) {} catch (e) {}
return url; return str;
}, },
/** /**