[Solved] Bug with link?
-
If i create text linke this setVisible(true) and create a link the result is this
"setVisible(true)":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop
the text (true) is cut and is set to a title of the link!
-
[quote author="stuk" date="1292315564"]If i create text linke this setVisible(true) and create a link the result is this
"setVisible(true)":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop
the text (true) is cut and is set to a title of the link!
[/quote]No, it's the wiki syntax for setting alt-texts on hyperlinks. Try hovering your link with the mouse cursor: "true" will pop up.
-
Yes, is set to a <title> tag of the link, so how can i write setVisible(true) and put a link in it?
[quote author="peppe" date="1292316981"]
[quote author="stuk" date="1292315564"]If i create text linke this setVisible(true) and create a link the result is this"setVisible(true)":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop
the text (true) is cut and is set to a title of the link!
[/quote]No, it's the wiki syntax for setting alt-texts on hyperlinks. Try hovering your link with the mouse cursor: "true" will pop up. [/quote]
-
[quote author="stuk" date="1292317199"]Yes, is set to a <title> tag of the link, so how can i write setVisible(true) and put a link in it?[/quote]
Like this? "setVisible(true) ":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop
A whitespace between the closing parenthesis and the colon does the trick :-) -
Sorry, that combination kicks in the textile syntax, you will have to work around that by something like:
setVisible(true) ("doc":http://doc.qt.nokia.com/4.7/qwidget.html#visible-prop)
-
Even some other similar issues were raised yesterday.