View | Details | Raw Unified
Collapse All | Expand All

(-) monodevelop-0.6/Core/src/MonoDevelop.Base/Gui/Dialogs.old/NewFileDialog.cs (-2 / +2 lines)
 Lines 37-43    Link Here 
		TreeStore templateStore;
		TreeStore templateStore;
		Gtk.TreeView catView;
		Gtk.TreeView catView;
		Gtk.TreeView templateView;
		Gtk.TreeView templateView;
		IconView TemplateView;
		MonoDevelop.Gui.Widgets.IconView TemplateView;
		Button okButton;
		Button okButton;
		Button cancelButton;
		Button cancelButton;
		Label infoLabel;
		Label infoLabel;
 Lines 296-302    Link Here 
			catView.WidthRequest = 160;
			catView.WidthRequest = 160;
			catView.HeadersVisible = false;
			catView.HeadersVisible = false;
			templateView = new Gtk.TreeView (templateStore);
			templateView = new Gtk.TreeView (templateStore);
			TemplateView = new IconView();
			TemplateView = new MonoDevelop.Gui.Widgets.IconView();
			TreeViewColumn catColumn = new TreeViewColumn ();
			TreeViewColumn catColumn = new TreeViewColumn ();
			catColumn.Title = "categories";
			catColumn.Title = "categories";
(-) monodevelop-0.6/Core/src/MonoDevelop.Base/Gui/Dialogs.old/NewProjectDialog.cs (-3 / +3 lines)
 Lines 31-37    Link Here 
		ArrayList alltemplates = new ArrayList();
		ArrayList alltemplates = new ArrayList();
		ArrayList categories   = new ArrayList();
		ArrayList categories   = new ArrayList();
		
		
		IconView TemplateView;
		MonoDevelop.Gui.Widgets.IconView TemplateView;
		FolderEntry entry_location;
		FolderEntry entry_location;
		TreeStore catStore;
		TreeStore catStore;
		
		
 Lines 294-300    Link Here 
			
			
			lst_template_types.Selection.Changed += new EventHandler (CategoryChange);
			lst_template_types.Selection.Changed += new EventHandler (CategoryChange);
			
			
			TemplateView = new IconView();
			TemplateView = new MonoDevelop.Gui.Widgets.IconView();
			TreeViewColumn catColumn = new TreeViewColumn ();
			TreeViewColumn catColumn = new TreeViewColumn ();
			catColumn.Title = "categories";
			catColumn.Title = "categories";
 Lines 305-311    Link Here 
			lst_template_types.AppendColumn (catColumn);
			lst_template_types.AppendColumn (catColumn);
			TemplateView = new IconView ();
			TemplateView = new MonoDevelop.Gui.Widgets.IconView ();
			hbox_template.PackStart (TemplateView, true, true, 0);
			hbox_template.PackStart (TemplateView, true, true, 0);
			entry_location = new FolderEntry (GettextCatalog.GetString ("Combine Location"));
			entry_location = new FolderEntry (GettextCatalog.GetString ("Combine Location"));