summaryrefslogtreecommitdiffstats
path: root/src/gui/text
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-08-14 13:04:44 (GMT)
committerThierry Bastian <thierry.bastian@nokia.com>2009-08-14 13:04:44 (GMT)
commit32824094837dfe5e4c22189daeb0a5663c786070 (patch)
tree2fb3e16d575567937dfa5fa555c18a28e0b61951 /src/gui/text
parent05145be7e502d4330ced88d3e55207a99c0a841b (diff)
downloadQt-32824094837dfe5e4c22189daeb0a5663c786070.zip
Qt-32824094837dfe5e4c22189daeb0a5663c786070.tar.gz
Qt-32824094837dfe5e4c22189daeb0a5663c786070.tar.bz2
QCssParser: reordering initializers to match declaration
Diffstat (limited to 'src/gui/text')
-rw-r--r--src/gui/text/qcssparser_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/text/qcssparser_p.h b/src/gui/text/qcssparser_p.h
index 732164c..c685b08 100644
--- a/src/gui/text/qcssparser_p.h
+++ b/src/gui/text/qcssparser_p.h
@@ -369,7 +369,7 @@ struct Q_GUI_EXPORT Value
struct ColorData {
ColorData() : role(QPalette::NoRole), type(Invalid) {}
- ColorData(const QColor &col) : role(QPalette::NoRole), color(col), type(Color) {}
+ ColorData(const QColor &col) : color(col), role(QPalette::NoRole), type(Color) {}
ColorData(QPalette::ColorRole r) : role(r), type(Role) {}
QColor color;
QPalette::ColorRole role;