Author: lluis
Date: 2008-01-25 06:25:29 -0500 (Fri, 25 Jan 2008)
New Revision: 93881

Modified:
   trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/ChangeLog
   
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Components/FileBrowser.cs
   
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs
Log:
* MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs: Workaround to GetFields
  mono bug fix.
* MonoDevelop.Core.Gui.Components/FileBrowser.cs: Don't show labels in
  the toolbar.

Modified: trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/ChangeLog      
2008-01-25 11:23:57 UTC (rev 93880)
+++ trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/ChangeLog      
2008-01-25 11:25:29 UTC (rev 93881)
@@ -1,3 +1,10 @@
+2008-01-25  Lluis Sanchez Gual <[EMAIL PROTECTED]> 
+
+       * MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs: Workaround to GetFields 
mono
+         bug fix.
+       * MonoDevelop.Core.Gui.Components/FileBrowser.cs: Don't show labels in 
the
+         toolbar.
+
 2008-01-23  Lluis Sanchez Gual <[EMAIL PROTECTED]> 
 
        * MonoDevelop.Core.Gui.Dialogs/ProgressDialog.cs: Ensure we don't create

Modified: 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Components/FileBrowser.cs
===================================================================
--- 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Components/FileBrowser.cs
 2008-01-25 11:23:57 UTC (rev 93880)
+++ 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Components/FileBrowser.cs
 2008-01-25 11:25:29 UTC (rev 93881)
@@ -54,6 +54,7 @@
 
                        Toolbar toolbar = new Toolbar ();
                        toolbar.IconSize = IconSize.Menu;
+                       toolbar.ToolbarStyle = Gtk.ToolbarStyle.Icons;
 
                        goUp = new ToolButton (Gtk.Stock.GoUp);
                        goUp.Clicked += new EventHandler (OnGoUpClicked);

Modified: 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs
===================================================================
--- 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs
    2008-01-25 11:23:57 UTC (rev 93880)
+++ 
trunk/monodevelop/main/src/core/MonoDevelop.Core.Gui/MonoDevelop.Core.Gui.Dialogs/ErrorDialog.cs
    2008-01-25 11:25:29 UTC (rev 93881)
@@ -34,11 +34,11 @@
 {
        public class ErrorDialog : IDisposable
        {
-               [Glade.Widget ("ErrorDialog")] Dialog dialog;
-               [Glade.Widget] Button okButton;
-               [Glade.Widget] Label descriptionLabel;
-               [Glade.Widget] Gtk.TextView detailsTextView;
-               [Glade.Widget] Gtk.Expander expander;
+               [Glade.Widget ("ErrorDialog")] protected Dialog dialog;
+               [Glade.Widget] protected Button okButton;
+               [Glade.Widget] protected Label descriptionLabel;
+               [Glade.Widget] protected Gtk.TextView detailsTextView;
+               [Glade.Widget] protected Gtk.Expander expander;
                
                TextTag tagNoWrap;
                TextTag tagWrap;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to