kconfig_compiler: fix typo that prevented using default QDateTime values

wilder
Alex Richardson 12 years ago
parent 6688c05596
commit b1487f0c6b
  1. 2
      src/kconfig_compiler/kconfig_compiler.cpp

@ -1110,7 +1110,7 @@ QString defaultValue(const QString &t)
return "false";
} else if (type == "double") {
return "0.0";
} else if (type == "datedime") {
} else if (type == "datetime") {
return "QDateTime()";
} else if (type == "longlong") {
return "0";

Loading…
Cancel
Save