Changeset 1482
- Timestamp:
- 12/07/07 15:53:12 (9 months ago)
- Files:
-
- phoneyc/trunk/modules/jscript/VLC.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
phoneyc/trunk/modules/jscript/VLC.js
r1480 r1482 10 10 this.setVariable=function(arg0, arg1) { 11 11 if ((arg0.length > 255) || (arg1.length > 255)) { 12 add_alert("VLC setVariable() overflow") :12 add_alert("VLC setVariable() overflow"); 13 13 } 14 14 } 15 15 this.addTarget=function(arg0, arg1, arg2, arg3) { 16 16 if ((arg0.length > 255) || (arg1.length > 255) || (arg2.length > 255) || (arg3.length > 255)) { 17 add_alert("VLC addTarget() overflow") :17 add_alert("VLC addTarget() overflow"); 18 18 } 19 19 }
