diff options
author | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-14 13:04:44 (GMT) |
---|---|---|
committer | Thierry Bastian <thierry.bastian@nokia.com> | 2009-08-14 13:04:44 (GMT) |
commit | 32824094837dfe5e4c22189daeb0a5663c786070 (patch) | |
tree | 2fb3e16d575567937dfa5fa555c18a28e0b61951 /src/gui | |
parent | 05145be7e502d4330ced88d3e55207a99c0a841b (diff) | |
download | Qt-32824094837dfe5e4c22189daeb0a5663c786070.zip Qt-32824094837dfe5e4c22189daeb0a5663c786070.tar.gz Qt-32824094837dfe5e4c22189daeb0a5663c786070.tar.bz2 |
QCssParser: reordering initializers to match declaration
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/text/qcssparser_p.h | 2 |
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; |