summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-12-04 12:38:37 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-12-05 23:57:51 +0100
commiteb7b140d6d2d1aba9459fd717f5abe5794acba68 (patch)
tree6a40e58cce1acbf6f74eb233ffafd69e2aa6106b
parent13673ced441f90fa62b41e69b5d5d7341d2e24f9 (diff)
Fix bad CSS color: O (the letter) is not a valid hex digit
Found by: Tomaz Canabrava <tcanabrava@kde.org> Change-Id: Ia1b5b00819cf4b145d1384aacbd54ed9a23aa6a3 Reviewed-by: Dirk Hohndel Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
-rw-r--r--src/widgets/doc/snippets/code/doc_src_stylesheet.qdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widgets/doc/snippets/code/doc_src_stylesheet.qdoc b/src/widgets/doc/snippets/code/doc_src_stylesheet.qdoc
index 7f6f1a3d8b..36d3dc6af4 100644
--- a/src/widgets/doc/snippets/code/doc_src_stylesheet.qdoc
+++ b/src/widgets/doc/snippets/code/doc_src_stylesheet.qdoc
@@ -874,7 +874,7 @@ QGroupBox::title {
subcontrol-position: top center; /* position at the top center */
padding: 0 3px;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
- stop: 0 #FFOECE, stop: 1 #FFFFFF);
+ stop: 0 #FF0ECE, stop: 1 #FFFFFF);
}
//! [114]