示例#1
0
 /// <summary>
 /// Only called by the MainLoop.
 /// </summary>
 private void UndoDid(CMModel model, CMView view, UUID uuid)
 {
     if ((m_state & State.SHOWING_CHANGES) > 0)
     {
         ContentManagementEntity ent = model.FindMetaEntityAffectedByUndo(uuid);
         if (ent != null)
         {
             view.DisplayEntity(ent);
         }
     }
 }
示例#2
0
 /// <summary>
 /// Only called by the MainLoop.
 /// </summary>
 private void UndoDid(CMModel model, CMView view, UUID uuid)
 {
     if ((m_state & State.SHOWING_CHANGES) > 0)
     {
         ContentManagementEntity ent = model.FindMetaEntityAffectedByUndo(uuid);
         if (ent != null)
             view.DisplayEntity(ent);
     }
 }