mail-archives/monodevelop-patches-list/2004-March/000819.html

106 строки
6.6 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<TITLE> [Monodevelop-patches-list] r1212 - in trunk/MonoDevelop: . src/AddIns/DisplayBindings/SourceEditor/Search
</TITLE>
<LINK REL="Index" HREF="index.html" >
<LINK REL="made" HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1212%20-%20in%20trunk/MonoDevelop%3A%20.%20src/AddIns/DisplayBindings/SourceEditor/Search&In-Reply-To=">
<META NAME="robots" CONTENT="index,nofollow">
<META http-equiv="Content-Type" content="text/html; charset=us-ascii">
<LINK REL="Previous" HREF="000818.html">
<LINK REL="Next" HREF="000820.html">
</HEAD>
<BODY BGCOLOR="#ffffff">
<H1>[Monodevelop-patches-list] r1212 - in trunk/MonoDevelop: . src/AddIns/DisplayBindings/SourceEditor/Search</H1>
<B>commit-watcher at mono-cvs.ximian.com</B>
<A HREF="mailto:monodevelop-patches-list%40lists.ximian.com?Subject=%5BMonodevelop-patches-list%5D%20r1212%20-%20in%20trunk/MonoDevelop%3A%20.%20src/AddIns/DisplayBindings/SourceEditor/Search&In-Reply-To="
TITLE="[Monodevelop-patches-list] r1212 - in trunk/MonoDevelop: . src/AddIns/DisplayBindings/SourceEditor/Search">commit-watcher at mono-cvs.ximian.com
</A><BR>
<I>Sun Mar 21 01:19:29 EST 2004</I>
<P><UL>
<LI>Previous message: <A HREF="000818.html">[Monodevelop-patches-list] r1211 - trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog
</A></li>
<LI>Next message: <A HREF="000820.html">[Monodevelop-patches-list] r1213 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser AddIns/BackendBindings/CSharpBinding/Parser/SharpDevelopTree Libraries/SharpRefactory Libraries/SharpRefactory/src Libraries/SharpRefactory/src/CodeDOM Libraries/SharpRefactory/src/Lexer Libraries/SharpRefactory/src/Lexer/Reader Libraries/SharpRefactory/src/Lexer/Specials Libraries/SharpRefactory/src/Parser/AST Libraries/SharpRefactory/src/Parser/AST/Expressions Libraries/SharpRefactory/src/Parser/AST/GlobalScope Libraries/SharpRefactory/src/Parser/AST/Statements Libraries/SharpRefactory/src/Parser/AST/TypeLevel Libraries/SharpRefactory/src/Parser/generated Libraries/SharpRefactory/src/Parser/generated/keywordlist Libraries/SharpRefactory/src/PrettyPrinter Libraries/SharpRefactory/src/VBConverter Main/Base Main/Base/Commands/VBConverter Main/Base/Services
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#819">[ date ]</a>
<a href="thread.html#819">[ thread ]</a>
<a href="subject.html#819">[ subject ]</a>
<a href="author.html#819">[ author ]</a>
</LI>
</UL>
<HR>
<!--beginarticle-->
<PRE>Author: jba
Date: 2004-03-21 01:19:29 -0500 (Sun, 21 Mar 2004)
New Revision: 1212
Modified:
trunk/MonoDevelop/ChangeLog
trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs
Log:
fixed taskview to be presented before 'search completed' dialog
Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog 2004-03-21 02:54:25 UTC (rev 1211)
+++ trunk/MonoDevelop/ChangeLog 2004-03-21 06:19:29 UTC (rev 1212)
@@ -1,3 +1,8 @@
+2004-03-21 John BouAntoun &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">jba-mono at optusnet.com.au</A>&gt;
+
+ * src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs:
+ fixed taskview to be presented before &quot;search completed&quot; dialog.
+
2004-03-20 Iain McCoy &lt;<A HREF="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">iainmccoy at optusnet.com.au</A>&gt;
* configure.in: forgot to undo a change that was part of one of the
mistakes I made :)
Modified: trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs 2004-03-21 02:54:25 UTC (rev 1211)
+++ trunk/MonoDevelop/src/AddIns/DisplayBindings/SourceEditor/Search/SearchReplaceInFilesManager.cs 2004-03-21 06:19:29 UTC (rev 1212)
@@ -105,11 +105,16 @@
{
TaskService taskService = (TaskService)MonoDevelop.Core.Services.ServiceManager.Services.GetService(typeof(TaskService));
taskService.NotifyTaskChange();
+
+ // present the taskview to show the search results
+ OpenTaskView taskView = WorkbenchSingleton.Workbench.GetPad(typeof(OpenTaskView)) as OpenTaskView;
+ if (taskView != null) {
+ taskView.BringToFront();
+ }
+
+ // tell the user search is done.
MessageService MessageService = (MessageService)ServiceManager.Services.GetService (typeof (MessageService));
MessageService.ShowMessage (&quot;Search completed&quot;);
-
- OpenTaskView taskView = WorkbenchSingleton.Workbench.GetPad(typeof(OpenTaskView)) as OpenTaskView;
- if (taskView != null) taskView.BringToFront();
}
public static void ReplaceAll()
</PRE>
<!--endarticle-->
<HR>
<P><UL>
<!--threads-->
<LI>Previous message: <A HREF="000818.html">[Monodevelop-patches-list] r1211 - trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/ReferenceDialog
</A></li>
<LI>Next message: <A HREF="000820.html">[Monodevelop-patches-list] r1213 - in trunk/MonoDevelop/src: AddIns/BackendBindings/CSharpBinding AddIns/BackendBindings/CSharpBinding/Parser AddIns/BackendBindings/CSharpBinding/Parser/SharpDevelopTree Libraries/SharpRefactory Libraries/SharpRefactory/src Libraries/SharpRefactory/src/CodeDOM Libraries/SharpRefactory/src/Lexer Libraries/SharpRefactory/src/Lexer/Reader Libraries/SharpRefactory/src/Lexer/Specials Libraries/SharpRefactory/src/Parser/AST Libraries/SharpRefactory/src/Parser/AST/Expressions Libraries/SharpRefactory/src/Parser/AST/GlobalScope Libraries/SharpRefactory/src/Parser/AST/Statements Libraries/SharpRefactory/src/Parser/AST/TypeLevel Libraries/SharpRefactory/src/Parser/generated Libraries/SharpRefactory/src/Parser/generated/keywordlist Libraries/SharpRefactory/src/PrettyPrinter Libraries/SharpRefactory/src/VBConverter Main/Base Main/Base/Commands/VBConverter Main/Base/Services
</A></li>
<LI> <B>Messages sorted by:</B>
<a href="date.html#819">[ date ]</a>
<a href="thread.html#819">[ thread ]</a>
<a href="subject.html#819">[ subject ]</a>
<a href="author.html#819">[ author ]</a>
</LI>
</UL>
<hr>
<a href="http://lists.ximian.com/mailman/listinfo/monodevelop-patches-list">More information about the Monodevelop-patches-list
mailing list</a><br>
</body></html>