[Monodevelop-patches-list] r772 - in trunk/MonoDevelop/src/Main/Base/Gui/Dialogs: . OptionPanels/IDEOptions

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Tue Feb 3 20:16:34 EST 2004


Author: tberman
Date: 2004-02-03 20:16:33 -0500 (Tue, 03 Feb 2004)
New Revision: 772

Modified:
   trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndCombinePanel.cs
   trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/TreeViewOptions.cs
Log:
small fixups


Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndCombinePanel.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndCombinePanel.cs	2004-02-04 00:49:57 UTC (rev 771)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/OptionPanels/IDEOptions/ProjectAndCombinePanel.cs	2004-02-04 01:16:33 UTC (rev 772)
@@ -26,10 +26,12 @@
 {
 	public class ProjectAndCombinePanel : AbstractOptionPanel
 	{
+
 		// service instances needed
 		PropertyService PropertyService = (PropertyService)ServiceManager.Services.GetService (typeof (PropertyService));
 		FileUtilityService FileUtilityService = (FileUtilityService)ServiceManager.Services.GetService (typeof (FileUtilityService));
 		MessageService MessageService = (MessageService)ServiceManager.Services.GetService (typeof (MessageService));
+		
 		ProjectAndCombinePanelWidget widget;
 		const string projectAndCombineProperty = "SharpDevelop.UI.ProjectAndCombineOptions";
 
@@ -105,7 +107,7 @@
 				projectLocationTextBox.GtkEntry.Text = p.GetProperty(
 					"ICSharpCode.SharpDevelop.Gui.Dialogs.NewProjectDialog.DefaultPath", 
 					System.IO.Path.Combine(System.Environment.GetFolderPath(System.Environment.SpecialFolder.Personal),
-							"SharpDevelop Projects")).ToString();
+							"MonoDevelopProjects")).ToString();
 				BeforeCompileAction action = (BeforeCompileAction) p.GetProperty(
 					"SharpDevelop.Services.DefaultParserService.BeforeCompileAction", 
 					BeforeCompileAction.SaveAllFiles);

Modified: trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/TreeViewOptions.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/TreeViewOptions.cs	2004-02-04 00:49:57 UTC (rev 771)
+++ trunk/MonoDevelop/src/Main/Base/Gui/Dialogs/TreeViewOptions.cs	2004-02-04 01:16:33 UTC (rev 772)
@@ -119,7 +119,6 @@
 					Gtk.TreeIter new_iter;
 					treeStore.IterChildren (out new_iter, iter);
 					Gtk.TreePath new_path = treeStore.GetPath (new_iter);
-					TreeView.CollapseAll ();
 					TreeView.ExpandToPath (new_path);
 					TreeView.Selection.SelectPath (new_path);
 				} else {




More information about the Monodevelop-patches-list mailing list