sorry. for. my. OCD.

This commit is contained in:
Charlie Kindel
2020-05-18 23:10:45 -06:00
parent c7b4b3472a
commit dc87bc4e07

View File

@@ -1985,7 +1985,7 @@ namespace Terminal.Gui {
/// <remarks>
/// See also <see cref="Timeout"/>
/// </remarks>
static public event EventHandler Iteration;
public static event EventHandler Iteration;
/// <summary>
/// Returns a rectangle that is centered in the screen for the provided size.
@@ -2219,7 +2219,7 @@ namespace Terminal.Gui {
/// <summary>
/// Merely a debugging aid to see the raw mouse events
/// </summary>
static public Action<MouseEvent> RootMouseEvent;
public static Action<MouseEvent> RootMouseEvent;
internal static View wantContinuousButtonPressedView;
static View lastMouseOwnerView;
@@ -2284,7 +2284,7 @@ namespace Terminal.Gui {
/// This event is fired once when the application is first loaded. The dimensions of the
/// terminal are provided.
/// </summary>
static public event EventHandler<ResizedEventArgs> Loaded;
public static event EventHandler<ResizedEventArgs> Loaded;
/// <summary>
/// Building block API: Prepares the provided toplevel for execution.
@@ -2299,7 +2299,7 @@ namespace Terminal.Gui {
/// the <see cref="RunLoop"/> method, and then the <see cref="End(RunState)"/> method upon termination which will
/// undo these changes.
/// </remarks>
static public RunState Begin (Toplevel toplevel)
public static RunState Begin (Toplevel toplevel)
{
if (toplevel == null)
throw new ArgumentNullException (nameof (toplevel));
@@ -2333,7 +2333,7 @@ namespace Terminal.Gui {
/// Building block API: completes the execution of a Toplevel that was started with Begin.
/// </summary>
/// <param name="runState">The runstate returned by the <see cref="Begin(Toplevel)"/> method.</param>
static public void End (RunState runState)
public static void End (RunState runState)
{
if (runState == null)
throw new ArgumentNullException (nameof (runState));
@@ -2511,7 +2511,7 @@ namespace Terminal.Gui {
/// <summary>
/// Invoked when the terminal was resized. The new size of the terminal is provided.
/// </summary>
static public event EventHandler<ResizedEventArgs> Resized;
public static event EventHandler<ResizedEventArgs> Resized;
static void TerminalResized ()
{