diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-10-13 02:36:05 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-10-13 02:36:05 (GMT) |
commit | 5e31c0cae45bae6f66decfb37825ed5d445e49e4 (patch) | |
tree | 3feade068e8543f56a0eec9054fdba0dfb83740c /src/declarative/fx/qfxflipable.cpp | |
parent | d71db342a34690438878684f054dca820f77b1b9 (diff) | |
download | Qt-5e31c0cae45bae6f66decfb37825ed5d445e49e4.zip Qt-5e31c0cae45bae6f66decfb37825ed5d445e49e4.tar.gz Qt-5e31c0cae45bae6f66decfb37825ed5d445e49e4.tar.bz2 |
More i18n
Diffstat (limited to 'src/declarative/fx/qfxflipable.cpp')
-rw-r--r-- | src/declarative/fx/qfxflipable.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/fx/qfxflipable.cpp b/src/declarative/fx/qfxflipable.cpp index dc5101c..d381cfe 100644 --- a/src/declarative/fx/qfxflipable.cpp +++ b/src/declarative/fx/qfxflipable.cpp @@ -142,7 +142,7 @@ void QFxFlipable::setFront(QFxItem *front) { Q_D(QFxFlipable); if (d->front) { - qmlInfo(this) << "front is a write-once property"; + qmlInfo(tr("front is a write-once property"),this); return; } d->front = front; @@ -161,7 +161,7 @@ void QFxFlipable::setBack(QFxItem *back) { Q_D(QFxFlipable); if (d->back) { - qmlInfo(this) << "back is a write-once property"; + qmlInfo(tr("back is a write-once property"),this); return; } d->back = back; |