Esempio n. 1
0
 void SetUpdatedEditedStateIfNoChanges()
 {
     if (m_EditedState == EditedState.NoChanges)
     {
         m_EditedState = EditedState.Updated;
     }
 }
Esempio n. 2
0
 public ModuleData(string identifier, string name, bool isEditable, bool newlyCreatedModule = false)
 {
     this.identifier = identifier;
     currentProfilerModuleIdentifier = identifier;
     m_Name        = name;
     m_IsEditable  = isEditable;
     m_EditedState = (newlyCreatedModule) ? EditedState.Created : EditedState.NoChanges;
 }