Skip to content
Snippets Groups Projects

some more cleanup, and new clang-tidy configuration with all obligatory tests

Merged Wuttke, Joachim requested to merge j.tidy3 into main
4 files
+ 213
43
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -74,7 +74,7 @@ QStringList ComboProperty::values() const
void ComboProperty::setValues(const QStringList& values)
{
ASSERT(values.size());
ASSERT(!values.empty());
QString current = currentValue();
m_values = values;
setCurrentIndex(m_values.contains(current) ? m_values.indexOf(current) : 0);
Loading