1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 20:05:35 +02:00

Workspace variable serialization in case they are modified withPath Entry Variable info on load

This commit is contained in:
Mikhail Sennikovsky 2007-02-28 12:14:49 +00:00
parent 258757431c
commit 1d087b260f

View file

@ -486,6 +486,13 @@ public class UserDefinedVariableSupplier extends CoreMacroSupplierBase {
//now load PathEntry Variables from preferences
loadPathEntryVariables(macros);
if(macros.isDirty()){
try {
storeWorkspaceMacros(macros, true);
} catch (CoreException e) {
CCorePlugin.log(e);
}
}
return macros;
}