Korero

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 1  →  ?path2? @ 2
/Korero/Heartbeat/HeartbeatForm.Designer.cs
@@ -173,6 +173,7 @@
this.Name = "HeartbeatForm";
this.Text = "Korero: Heartbeat";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HeartbeatForm_FormClosing);
this.Load += new System.EventHandler(this.HeartbeatForm_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.tableLayoutPanel1.ResumeLayout(false);
/Korero/Heartbeat/HeartbeatForm.cs
@@ -28,7 +28,6 @@
public HeartbeatForm()
{
InitializeComponent();
Utilities.WindowState.FormTracker.Track(this);
 
_cancellationTokenSource = new CancellationTokenSource();
_cancellationToken = _cancellationTokenSource.Token;
@@ -60,6 +59,10 @@
#endregion
 
#region Event Handlers
private void HeartbeatForm_Load(object sender, EventArgs e)
{
Utilities.WindowState.FormTracker.Track(this);
}
 
private void MqttCommunication_NotificationReceived(object sender, MqttNotificationEventArgs e)
{
@@ -124,5 +127,7 @@
}
 
#endregion
 
 
}
}