[Monodevelop-patches-list] r1929 - in trunk/MonoDevelop/Core/src/Main/Base: . Gui/Dialogs/CombineConfiguration
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Tue Aug 10 01:09:51 EDT 2004
Author: tberman
Date: 2004-08-10 01:09:51 -0400 (Tue, 10 Aug 2004)
New Revision: 1929
Modified:
trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
trunk/MonoDevelop/Core/src/Main/Base/Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs
Log:
fix dumb leftover issue. closes bug 61795
Modified: trunk/MonoDevelop/Core/src/Main/Base/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/ChangeLog 2004-08-10 04:35:42 UTC (rev 1928)
+++ trunk/MonoDevelop/Core/src/Main/Base/ChangeLog 2004-08-10 05:09:51 UTC (rev 1929)
@@ -1,5 +1,10 @@
2004-08-10 Todd Berman <tberman at off.net>
+ * Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs: fix left
+ over ${RES:} strings.
+
+2004-08-10 Todd Berman <tberman at off.net>
+
* Gui/Dialogs/NewProjectDialog.cs:
* Gui/Dialogs/OptionPanels/IDEOptions/LoadSavePanel.cs: Patch from
Samuel Kaufman to change the default project location to ~/Projects.
Modified: trunk/MonoDevelop/Core/src/Main/Base/Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs
===================================================================
--- trunk/MonoDevelop/Core/src/Main/Base/Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs 2004-08-10 04:35:42 UTC (rev 1928)
+++ trunk/MonoDevelop/Core/src/Main/Base/Gui/Dialogs/CombineConfiguration/CombineStartupPanel.cs 2004-08-10 05:09:51 UTC (rev 1929)
@@ -51,17 +51,8 @@
this.combine = (Combine)((IProperties)CustomizationObject).GetProperty("Combine");
- ActionLabel.Text = StringParserService.Parse(
- "${res:Dialog.Options.CombineOptions.Startup.ActionLabel}");
-
- // Setting up RadioButtons
-
- singleRadioButton.Label = StringParserService.Parse(
- "${res:Dialog.Options.CombineOptions.Startup.SingleStartupRadioButton}");
singleRadioButton.Active = combine.SingleStartupProject;
singleRadioButton.Clicked += new EventHandler(OnSingleRadioButtonClicked);
- multipleRadioButton.Label = StringParserService.Parse(
- "${res:Dialog.Options.CombineOptions.Startup.MultipleStartupRadioButton}");
multipleRadioButton.Active = !combine.SingleStartupProject;
singleRadioButton.Clicked += new EventHandler(OptionsChanged);
@@ -89,11 +80,9 @@
entryTreeView.Model = store;
TreeIter iter = new TreeIter ();
- string entryHeader = StringParserService.Parse(
- "${res:Dialog.Options.CombineOptions.Startup.EntryColumnHeader}");
+ string entryHeader = StringParserService.Parse("Entry");
entryTreeView.AppendColumn (entryHeader, new CellRendererText (), "text", 0);
- string actionHeader = StringParserService.Parse(
- "${res:Dialog.Options.CombineOptions.Startup.ActionColumnHeader}");
+ string actionHeader = StringParserService.Parse( "Action");
entryTreeView.AppendColumn (actionHeader, new CellRendererText (), "text", 1);
// sanity check to ensure we had a proper execture definitions save last time rounf
More information about the Monodevelop-patches-list
mailing list