CVS commit by rodda: Compile fix for gcc-2.9x M +1 -1 subprojectoptionsdlg.cpp 1.22 --- kdevelop/parts/autoproject/subprojectoptionsdlg.cpp #1.21:1.22 @@ -178,5 +178,5 @@ void SubprojectOptionsDialog::storeConfi QString old_metasources = subProject->variables["METASOURCES"]; - QString new_metasources = metasources_checkbox->isChecked() ? "AUTO" : QString::null; + QString new_metasources = metasources_checkbox->isChecked() ? QString::fromLatin1("AUTO") : QString::null; if (new_metasources != old_metasources) { subProject->variables["METASOURCES"] = new_metasources;