Beispiel #1
0
 void FreeSlaveFromTimesync(LogWindow slave)
 {
     slave.FreeFromTimeSync();
 }
Beispiel #2
0
 public void AddOtherWindowToTimesync(LogWindow other)
 {
     if (other.IsTimeSynced)
     {
         if (IsTimeSynced)
         {
             other.FreeFromTimeSync();
             AddSlaveToTimesync(other);
         }
         else
         {
             AddToTimeSync(other);
         }
     }
     else
     {
         AddSlaveToTimesync(other);
     }
 }