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

View file

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

View file

@ -136,8 +136,6 @@ namespace OpenTK.Platform.Windows
{ {
#region Window functions #region Window functions
#region Drag functions
[DllImport("shell32.dll")] [DllImport("shell32.dll")]
internal static extern bool DragAcceptFiles( internal static extern bool DragAcceptFiles(
IntPtr handle, IntPtr handle,
@ -157,8 +155,6 @@ namespace OpenTK.Platform.Windows
HDROP hDrop HDROP hDrop
); );
#endregion
#region SetWindowPos #region SetWindowPos
// WINUSERAPI BOOL WINAPI SetWindowPos(__in HWND hWnd, __in_opt HWND hWndInsertAfter, // 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 Private Members
#region Utils
private void ReadProperty(IntPtr window, IntPtr property, IntPtr type, ref IntPtr data, ref IntPtr itemsCount) private void ReadProperty(IntPtr window, IntPtr property, IntPtr type, ref IntPtr data, ref IntPtr itemsCount)
{ {
int format; int format;
@ -360,8 +358,6 @@ namespace OpenTK.Platform.X11
return fileNames; return fileNames;
} }
#endregion
#region private void RegisterAtoms() #region private void RegisterAtoms()
/// <summary> /// <summary>