Author: lluis
Date: 2008-01-21 11:44:57 -0500 (Mon, 21 Jan 2008)
New Revision: 93412

Modified:
   trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/ChangeLog
   
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs
   
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore/GtkDesignInfo.cs
Log:
* MonoDevelop.GtkCore/GtkDesignInfo.cs,
  MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Notify file
  changes through the FileService.

Modified: trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/ChangeLog
===================================================================
--- trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/ChangeLog     
2008-01-21 16:43:39 UTC (rev 93411)
+++ trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/ChangeLog     
2008-01-21 16:44:57 UTC (rev 93412)
@@ -1,3 +1,9 @@
+2008-01-21  Lluis Sanchez Gual <[EMAIL PROTECTED]> 
+
+       * MonoDevelop.GtkCore/GtkDesignInfo.cs,
+         MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Notify file 
changes
+         through the FileService.
+
 2008-01-16  Lluis Sanchez Gual <[EMAIL PROTECTED]> 
 
        * MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs: Stetic code must 
be

Modified: 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore/GtkDesignInfo.cs
===================================================================
--- 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore/GtkDesignInfo.cs
  2008-01-21 16:43:39 UTC (rev 93411)
+++ 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore/GtkDesignInfo.cs
  2008-01-21 16:44:57 UTC (rev 93412)
@@ -271,6 +271,7 @@
                                        sw.WriteLine ("<stetic-interface>");
                                        sw.WriteLine ("</stetic-interface>");
                                        sw.Close ();
+                                       FileService.NotifyFileChanged 
(SteticFile);
                                }
                                
                                // Add the stetic file to the project

Modified: 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs
===================================================================
--- 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs
   2008-01-21 16:43:39 UTC (rev 93411)
+++ 
trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/MonoDevelop.GtkCore.GuiBuilder/GuiBuilderService.cs
   2008-01-21 16:44:57 UTC (rev 93412)
@@ -359,6 +359,7 @@
                                        
IdeApp.ProjectOperations.ParserDatabase.UpdateFile (project, fileName, 
((StringWriter)fileStream).ToString ());
                        }
 
+                       FileService.NotifyFileChanged (fileName);
                        return fileName;
                }
                
@@ -475,6 +476,7 @@
                                        provider.GenerateCodeFromCompileUnit 
(unit, fileStream, new CodeGeneratorOptions ());
                                } finally {
                                        fileStream.Close ();
+                                       FileService.NotifyFileChanged (fname);
                                }
                        }
                        

_______________________________________________
Mono-patches maillist  -  Mono-patches@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to