[Monodevelop-patches-list] r2166 - trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Wed Jan 26 13:03:11 EST 2005


Author: alexmipe
Date: 2005-01-26 13:03:10 -0500 (Wed, 26 Jan 2005)
New Revision: 2166

Modified:
   trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs
Log:
updateWord to UpdateWord

Modified: trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs
===================================================================
--- trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs	2005-01-26 16:05:18 UTC (rev 2165)
+++ trunk/MonoDevelop/Core/src/AddIns/DisplayBindings/SourceEditor/CodeCompletion/CompletionListWindow.cs	2005-01-26 18:03:10 UTC (rev 2166)
@@ -57,7 +57,7 @@
 				wnd.Hide ();
 			}
 			
-			wnd.updateWord ();
+			wnd.UpdateWord ();
 			
 			wnd.PartialWord = wnd.CompleteWord;		
 		}
@@ -104,7 +104,7 @@
 				wnd.Hide ();
 				
 			if ((ka & ListWindow.KeyAction.Complete) != 0) {
-				wnd.updateWord ();
+				wnd.UpdateWord ();
 			}
 			
 			if ((ka & ListWindow.KeyAction.Ignore) != 0)
@@ -113,7 +113,7 @@
 			return false;
 		}
 		
-		void updateWord ()
+		void UpdateWord ()
 		{
 			TextIter offsetIter = wnd.control.Buffer.GetIterAtMark (wnd.triggeringMark);
 			TextIter endIter = wnd.control.Buffer.GetIterAtOffset (offsetIter.Offset + wnd.PartialWord.Length);




More information about the Monodevelop-patches-list mailing list