Delete region keyword

This commit is contained in:
Vlad K 2017-06-21 22:07:32 +03:00
parent 280fa4b77d
commit eb951d8569
4 changed files with 0 additions and 20 deletions

View file

@ -7,14 +7,8 @@ namespace OpenTK.Input
/// </summary>
public class FileDropEventArgs : EventArgs
{
#region Fields
string fileName;
#endregion
#region Public Members
/// <summary>
/// Gets the name of the file.
/// </summary>
@ -24,7 +18,5 @@ namespace OpenTK.Input
get;
internal set;
}
#endregion
}
}

View file

@ -1159,12 +1159,8 @@ namespace OpenTK
private void OnMouseMoveInternal(object sender, MouseMoveEventArgs e) { OnMouseMove(e); }
private void OnMouseWheelInternal(object sender, MouseWheelEventArgs e) { OnMouseWheel(e); }
#region OnFileDropInternal
private void OnFileDropInternal(object sender, FileDropEventArgs e) { OnFileDrop(e); }
#endregion
#region OnMoveInternal
private void OnMoveInternal(object sender, EventArgs e) { OnMove(e); }

View file

@ -136,8 +136,6 @@ namespace OpenTK.Platform.Windows
{
#region Window functions
#region Drag functions
[DllImport("shell32.dll")]
internal static extern bool DragAcceptFiles(
IntPtr handle,
@ -157,8 +155,6 @@ namespace OpenTK.Platform.Windows
HDROP hDrop
);
#endregion
#region SetWindowPos
// WINUSERAPI BOOL WINAPI SetWindowPos(__in HWND hWnd, __in_opt HWND hWndInsertAfter,

View file

@ -331,8 +331,6 @@ namespace OpenTK.Platform.X11
#region Private Members
#region Utils
private void ReadProperty(IntPtr window, IntPtr property, IntPtr type, ref IntPtr data, ref IntPtr itemsCount)
{
int format;
@ -360,8 +358,6 @@ namespace OpenTK.Platform.X11
return fileNames;
}
#endregion
#region private void RegisterAtoms()
/// <summary>