BDisp 2 gadi atpakaļ
vecāks
revīzija
663a92dd97

+ 1 - 1
Terminal.Gui/Configuration/ConfigurationManagerEventArgs.cs

@@ -14,5 +14,5 @@ namespace Terminal.Gui.Configuration {
 		public ConfigurationManagerEventArgs ()
 		{
 		}
-	}	
+	}
 }

+ 0 - 1
Terminal.Gui/Core/KeyEventEventArgs.cs

@@ -21,5 +21,4 @@ namespace Terminal.Gui {
 		/// </summary>
 		public bool Handled { get; set; } = false;
 	}
-
 }

+ 1 - 5
Terminal.Gui/Core/MouseFlagsChangedEventArgs.cs

@@ -1,14 +1,10 @@
 using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
 
 namespace Terminal.Gui {
 	/// <summary>
 	/// Args for events that describe a change in <see cref="MouseFlags"/>
 	/// </summary>
-	public class MouseFlagsChangedEventArgs : EventArgs{
+	public class MouseFlagsChangedEventArgs : EventArgs {
 
 		/// <summary>
 		/// Creates a new instance of the <see cref="MouseFlagsChangedEventArgs"/> class.

+ 1 - 5
Terminal.Gui/Core/PointEventArgs.cs

@@ -1,14 +1,10 @@
 using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
 
 namespace Terminal.Gui {
 	/// <summary>
 	/// Event args for events which relate to a single <see cref="Point"/>
 	/// </summary>
-	public class PointEventArgs : EventArgs{
+	public class PointEventArgs : EventArgs {
 
 		/// <summary>
 		/// Creates a new instance of the <see cref="PointEventArgs"/> class

+ 1 - 1
Terminal.Gui/Core/SizeChangedEventArgs.cs

@@ -3,7 +3,7 @@
 namespace Terminal.Gui {
 
 	/// <summary>
-	/// Args for events about about Size (e.g. Resized)
+	/// Args for events about Size (e.g. Resized)
 	/// </summary>
 	public class SizeChangedEventArgs : EventArgs {
 

+ 0 - 1
Terminal.Gui/Core/TimeoutEventArgs.cs

@@ -30,4 +30,3 @@ namespace Terminal.Gui {
 		}
 	}
 }
-

+ 0 - 4
Terminal.Gui/Core/ToggleEventArgs.cs

@@ -1,8 +1,4 @@
 using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
 
 namespace Terminal.Gui {
 	/// <summary>

+ 1 - 1
Terminal.Gui/Views/HistoryTextItem.cs

@@ -5,7 +5,7 @@ using Rune = System.Rune;
 
 namespace Terminal.Gui {
 	partial class HistoryText {
-		public class HistoryTextItem : EventArgs{
+		public class HistoryTextItem : EventArgs {
 			public List<List<Rune>> Lines;
 			public Point CursorPosition;
 			public LineStatus LineStatus;

+ 0 - 1
Terminal.Gui/Views/TabMouseEventArgs.cs

@@ -32,5 +32,4 @@ namespace Terminal.Gui {
 			MouseEvent = mouseEvent;
 		}
 	}
-
 }