summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorartoka <arto.katajasalo@digia.com>2011-11-01 12:47:14 (GMT)
committerCasper van Donderen <casper.vandonderen@nokia.com>2011-11-01 13:10:46 (GMT)
commit24348f5707078a222b439aeee364eb99953059b8 (patch)
tree88d128253737d6ad22231dede40fc5317895cf55 /doc/src
parent847e7af62c95a309d1fedbded72a542972f2503d (diff)
downloadQt-24348f5707078a222b439aeee364eb99953059b8.zip
Qt-24348f5707078a222b439aeee364eb99953059b8.tar.gz
Qt-24348f5707078a222b439aeee364eb99953059b8.tar.bz2
QStyleSheet example used a property that is hidden.
In the QStyleSheet documentation an example for boolean used QDialog {etch-disabled-text:1} property that is undocumented. Changed the property to QDialogButtonBox{ dialogbuttonbox-buttons-have-icons: 1; } that is documented. Task-number: QTBUG-11489 Merge-request: 2698 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/snippets/code/doc_src_stylesheet.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/snippets/code/doc_src_stylesheet.qdoc b/doc/src/snippets/code/doc_src_stylesheet.qdoc
index 99b31c9..b322fc8 100644
--- a/doc/src/snippets/code/doc_src_stylesheet.qdoc
+++ b/doc/src/snippets/code/doc_src_stylesheet.qdoc
@@ -481,7 +481,7 @@ QTextEdit { background-position: bottom center }
//! [81]
-QDialog { etch-disabled-text: 1 }
+QDialogButtonBox { dialogbuttonbox-buttons-have-icons: 1; }
//! [81]