SVN commit 794972 by winterz: permit an optional 4th value for colors to support rgba. thanks for the patch michaell. BUGS: 160545 M +1 -1 kconfig_compiler.cpp --- trunk/KDE/kdelibs/kdecore/kconfig_compiler/kconfig_compiler.cpp #794971:794972 @@ -452,7 +452,7 @@ defaultValue = "default" + name; } else if ( type == "Color" && !defaultValue.isEmpty() ) { - QRegExp colorRe("\\d+,\\s*\\d+,\\s*\\d+"); + QRegExp colorRe("\\d+,\\s*\\d+,\\s*\\d+(,\\s*\\d+)?"); if (colorRe.exactMatch(defaultValue)) { defaultValue = "QColor( " + defaultValue + " )";