diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2010-04-09 03:53:30 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2010-04-09 03:55:02 (GMT) |
commit | fb9f0c5c996f2ba27c43657c49f100daf4729e05 (patch) | |
tree | b83e72483adb1ca9d677811c3630b1329393fa12 /demos/declarative/twitter | |
parent | da56d7c25ce344128d827cfa2ed26f9eea437e4d (diff) | |
download | Qt-fb9f0c5c996f2ba27c43657c49f100daf4729e05.zip Qt-fb9f0c5c996f2ba27c43657c49f100daf4729e05.tar.gz Qt-fb9f0c5c996f2ba27c43657c49f100daf4729e05.tar.bz2 |
Text.wrap is deprecated
Diffstat (limited to 'demos/declarative/twitter')
-rw-r--r-- | demos/declarative/twitter/TwitterCore/FatDelegate.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/twitter/TwitterCore/FatDelegate.qml b/demos/declarative/twitter/TwitterCore/FatDelegate.qml index 3eabd9d..e999bb4 100644 --- a/demos/declarative/twitter/TwitterCore/FatDelegate.qml +++ b/demos/declarative/twitter/TwitterCore/FatDelegate.qml @@ -37,7 +37,7 @@ Component { + '<a href="app://@'+userScreenName+'"><b>'+userScreenName + "</b></a> from " +source + "<br /><b>" + addTags(statusText) + "</b></html>"; textFormat: Qt.RichText - color: "#cccccc"; style: Text.Raised; styleColor: "black"; wrap: true + color: "#cccccc"; style: Text.Raised; styleColor: "black"; wrapMode: Text.WordWrap anchors.left: whiteRect.right; anchors.right: blackRect.right; anchors.leftMargin: 6; anchors.rightMargin: 6 onLinkActivated: handleLink(link) } |