2007-04-25 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / XEventQueue.cs
index 29812fd1e56ebf14615e7f5e70c7c614a71f9ac1..11391af1a7279093caeaea71e177f8d3447a5adb 100644 (file)
@@ -39,7 +39,6 @@ namespace System.Windows.Forms {
                private PaintQueue      paint;  // Paint-only queue
                internal ArrayList      timer_list;
                private Thread          thread;
-               private bool            quit_posted;
                private bool            dispatch_idle;
 
                private static readonly int InitialXEventSize = 100;
@@ -52,7 +51,6 @@ namespace System.Windows.Forms {
                        paint = new PaintQueue(InitialPaintSize);
                        timer_list = new ArrayList ();
                        this.thread = thread;
-                       this.quit_posted = false;
                        this.dispatch_idle = true;
                }
 
@@ -132,16 +130,6 @@ namespace System.Windows.Forms {
                        }
                }
 
-               public bool PostQuitState {
-                       get {
-                               return quit_posted;
-                       }
-
-                       set {
-                               quit_posted = value;
-                       }
-               }
-
                public class PaintQueue {
 
                        private ArrayList       hwnds;