[Monodevelop-patches-list] r1171 - in trunk/MonoDevelop: . src/Main/Base/Gui/CompletionDatabaseWizard

commit-watcher at mono-cvs.ximian.com commit-watcher at mono-cvs.ximian.com
Mon Mar 15 11:58:14 EST 2004


Author: tberman
Date: 2004-03-15 11:58:13 -0500 (Mon, 15 Mar 2004)
New Revision: 1171

Modified:
   trunk/MonoDevelop/
   trunk/MonoDevelop/ChangeLog
   trunk/MonoDevelop/monodevelop.desktop
   trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/druid.cs
Log:
some tiny fixes/changes/etc



Property changes on: trunk/MonoDevelop
___________________________________________________________________
Name: svn:ignore
   - install-sh
aclocal.m4
missing
autom4te.cache
libtool
config.status
mkinstalldirs
Makefile
COPYING
INSTALL
ltmain.sh
config.sub
config.guess
monodevelop
config.log
Makefile.in
configure
monodevelop*.tar.gz

   + depcomp
install-sh
aclocal.m4
missing
autom4te.cache
libtool
config.status
mkinstalldirs
Makefile
COPYING
INSTALL
ltmain.sh
config.sub
config.guess
monodevelop
config.log
Makefile.in
configure
monodevelop*.tar.gz


Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog	2004-03-14 02:31:22 UTC (rev 1170)
+++ trunk/MonoDevelop/ChangeLog	2004-03-15 16:58:13 UTC (rev 1171)
@@ -1,3 +1,8 @@
+2004-03-15  Todd Berman <tberman at sevenl.net>
+
+	* monodevelop.desktop: added some bugzilla info
+	* src/Main/Base/Gui/CompletionDatabaseWizard: added some titles
+
 2004-03-12  Gustavo Giráldez  <gustavo.giraldez at gmx.net>
 
 	* gdldock/sources/gdl/gdl-dock-item-grip.c:

Modified: trunk/MonoDevelop/monodevelop.desktop
===================================================================
--- trunk/MonoDevelop/monodevelop.desktop	2004-03-14 02:31:22 UTC (rev 1170)
+++ trunk/MonoDevelop/monodevelop.desktop	2004-03-15 16:58:13 UTC (rev 1171)
@@ -11,3 +11,6 @@
 Terminal=false
 Type=Application
 Categories=Application;Development;
+X-GNOME-Bugzilla-Bugzilla=Ximian
+X-GNOME-Bugzilla-Product=MonoDevelop
+X-GNOME-Bugzilla-OtherBinaries=monodevelop

Modified: trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/druid.cs
===================================================================
--- trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/druid.cs	2004-03-14 02:31:22 UTC (rev 1170)
+++ trunk/MonoDevelop/src/Main/Base/Gui/CompletionDatabaseWizard/druid.cs	2004-03-15 16:58:13 UTC (rev 1171)
@@ -12,6 +12,7 @@
 	internal RadioButton download;
 	
 	internal MethodSelectionPage(CodeCompletionDruid druid) : base() {
+		Title = "Generation Method";
 		generateDatabase = new RadioButton("Generate a code completion database");
 		useExisting = new RadioButton(generateDatabase, "Use a code completion database already on this computer");
 		download = new RadioButton(generateDatabase, "Download a code completion database");
@@ -28,6 +29,7 @@
 	internal RadioButton light;
 	
 	internal GenerateDatabasePage(CodeCompletionDruid druid) : base(druid) {
+		Title = "Select Generation Style";
 		heavy = new RadioButton("Heavy process");
 		light = new RadioButton(heavy, "Light process");
 		AppendItem("", heavy, "This process is slower and more memory-intensive than the light process, but will enable faster code completion");
@@ -39,6 +41,7 @@
 	internal MonoDevelop.Gui.Widgets.FolderEntry filename;
 	
 	internal UseExistingPage(CodeCompletionDruid druid) : base(druid) {
+		Title = "Existing Database Location";
 		filename = new FolderEntry("Select code completion database");
 		filename.DefaultPath = System.IO.Directory.GetCurrentDirectory();
 		AppendItem("Where is the code completion database you would like to copy", filename, "");
@@ -49,6 +52,7 @@
 	internal Gtk.Entry uri;
 	
 	internal DownloadPage(CodeCompletionDruid druid) : base(druid) {
+		Title = "Download Database";
 		uri = new Gtk.Entry();
 		AppendItem("Where would you like to download the code completion database from?", uri, "");
 	}
@@ -184,7 +188,6 @@
 	{
 		MessageService messageService = (MessageService)ServiceManager.Services.GetService(typeof(MessageService));
 		bool really = messageService.AskQuestion("Are you sure you want to skip database creation? You will not have code completion functionality.", "Are you sure?");
-		Console.WriteLine("Really? " + really);
 		if (really) {
 			this.Destroy();
 			this.Canceled(this);




More information about the Monodevelop-patches-list mailing list