* XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / QueryContinueDragEventArgs.cs
index 64c4d2b4c12cf6f17ffe57aa9e1744db86841f69..85e151668b278963f5ce1b8330627838e5b3b0d5 100644 (file)
@@ -32,15 +32,15 @@ using System.Runtime.InteropServices;
 namespace System.Windows.Forms {
        [ComVisible(true)]
        public class QueryContinueDragEventArgs : EventArgs {
-               private int             key_state;
-               private bool            escape_pressed;
-               private DragAction      drag_action;
+               internal int            key_state;
+               internal bool           escape_pressed;
+               internal DragAction     drag_action;
 
                #region Public Constructors
                public QueryContinueDragEventArgs(int keyState, bool escapePressed, DragAction action) {
-                       this.key_state=keyState;
-                       this.escape_pressed=escapePressed;
-                       this.drag_action=action;
+                       this.key_state = keyState;
+                       this.escape_pressed = escapePressed;
+                       this.drag_action = action;
                }
                #endregion      // Public Constructors