this is what happens when you let c++ devs write javascript. ;)

svn path=/trunk/KDE/kdebase/workspace/plasma/scriptengines/javascript/; revision=906404
This commit is contained in:
Aaron J. Seigo 2009-01-06 07:37:55 +00:00
parent adf212324f
commit 74aee54777

View File

@ -26,7 +26,7 @@ plasmoid.stop = function()
plasmoid.setProgress = function(progress) plasmoid.setProgress = function(progress)
{ {
operation = controller.operationDescription("seek"); operation = controller.operationDescription("seek");
operation["seconds"] = progress; operation.seconds = progress;
for ( var i in operation ) { for ( var i in operation ) {
print(i + ' -> ' + operation[i] ); print(i + ' -> ' + operation[i] );
} }