summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxflipable.cpp
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-10-13 02:36:05 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-10-13 02:36:05 (GMT)
commit5e31c0cae45bae6f66decfb37825ed5d445e49e4 (patch)
tree3feade068e8543f56a0eec9054fdba0dfb83740c /src/declarative/fx/qfxflipable.cpp
parentd71db342a34690438878684f054dca820f77b1b9 (diff)
downloadQt-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.cpp4
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;