[tasque/viewmodel: 23/78] Change method name



commit 8c21664c8c89c7f28a8bcf2f73e3c1d9477218af
Author: Antonius Riha <antoniusriha gmail com>
Date:   Sat Jul 28 15:54:09 2012 +0200

    Change method name

 .../Samples/WindowsSingleInstanceSolution.cs       |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/Tasque.Gtk/Samples/WindowsSingleInstanceSolution.cs b/src/Tasque.Gtk/Samples/WindowsSingleInstanceSolution.cs
index 5beff3d..6347dd6 100644
--- a/src/Tasque.Gtk/Samples/WindowsSingleInstanceSolution.cs
+++ b/src/Tasque.Gtk/Samples/WindowsSingleInstanceSolution.cs
@@ -63,12 +63,12 @@ namespace Tasque.Samples
                 waitHandle = new EventWaitHandle(false, EventResetMode.AutoReset, waitHandleName);
                 Console.WriteLine("Event wait handle created");
 
-                var portier = new Thread(new ThreadStart(WaitForAnotherInstanceThread));
+                var portier = new Thread(new ThreadStart(WaitForAnotherInstance));
                 portier.Start();
             }
         }
 
-        static void WaitForAnotherInstanceThread()
+        static void WaitForAnotherInstance()
         {
             while (!exiting)
             {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]