diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-05-20 04:08:41 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-05-20 04:11:51 (GMT) |
commit | 5732a44092e17829985a381400bafccc326a0d1f (patch) | |
tree | 49d83690535244d81b421806042a81a0764238d1 /demos/declarative/snake | |
parent | 91251b69edd966965bf7944aec642321c362af2a (diff) | |
download | Qt-5732a44092e17829985a381400bafccc326a0d1f.zip Qt-5732a44092e17829985a381400bafccc326a0d1f.tar.gz Qt-5732a44092e17829985a381400bafccc326a0d1f.tar.bz2 |
Rename Component::errorsString() -> errorString() (and also for
QDeclarativeComponent)
Diffstat (limited to 'demos/declarative/snake')
-rw-r--r-- | demos/declarative/snake/content/snake.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/snake/content/snake.js b/demos/declarative/snake/content/snake.js index f5c231e..6f78b33 100644 --- a/demos/declarative/snake/content/snake.js +++ b/demos/declarative/snake/content/snake.js @@ -54,7 +54,7 @@ function startNewGame() } else { if(linkComponent.status != Component.Ready) { if(linkComponent.status == Component.Error) - console.log(linkComponent.errorsString()); + console.log(linkComponent.errorString()); else console.log("Still loading linkComponent"); continue;//TODO: Better error handling? @@ -294,7 +294,7 @@ function createCookie(value) { if(cookieComponent.status != Component.Ready) { if(cookieComponent.status == Component.Error) - console.log(cookieComponent.errorsString()); + console.log(cookieComponent.errorString()); else console.log("Still loading cookieComponent"); return;//TODO: Better error handling? |