summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Bastian <thierry.bastian@nokia.com>2009-08-14 15:04:44 +0200
committerThierry Bastian <thierry.bastian@nokia.com>2009-08-14 15:04:44 +0200
commit32824094837dfe5e4c22189daeb0a5663c786070 (patch)
tree2fb3e16d575567937dfa5fa555c18a28e0b61951
parent05145be7e502d4330ced88d3e55207a99c0a841b (diff)
QCssParser: reordering initializers to match declaration
-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 732164ccb..c685b0832 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;