[Monodevelop-patches-list] r1334 - in trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding: . Gui
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Thu Apr 1 16:07:31 EST 2004
Author: tberman
Date: 2004-04-01 16:07:31 -0500 (Thu, 01 Apr 2004)
New Revision: 1334
Modified:
trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs
Log:
close bug, fix strings
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog 2004-04-01 19:24:17 UTC (rev 1333)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/ChangeLog 2004-04-01 21:07:31 UTC (rev 1334)
@@ -1,3 +1,7 @@
+2004-04-01 Todd Berman <tberman at sevenl.net>
+
+ * Gui/OutputOptionsPanel.cs: parse resource string, closes bug #56325
+
2004-03-31 Todd Berman <tberman at sevenl.net>
* CSharpBindingExecutionManager.cs: dont test CompileTarget, for now
Modified: trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs
===================================================================
--- trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs 2004-04-01 19:24:17 UTC (rev 1333)
+++ trunk/MonoDevelop/src/AddIns/BackendBindings/CSharpBinding/Gui/OutputOptionsPanel.cs 2004-04-01 21:07:31 UTC (rev 1334)
@@ -94,8 +94,9 @@
void SelectFolder(object sender, EventArgs e)
{
+ ResourceService res = (ResourceService)ServiceManager.Services.GetService (typeof (ResourceService));
using (FileSelection fdiag = new FileSelection (
- "${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}")) {
+ res.GetString ("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}"))) {
if (fdiag.Run () == (int) ResponseType.Ok) {
outputDirectoryEntry.Text = fdiag.Filename;
}
More information about the Monodevelop-patches-list
mailing list