[Monodevelop-patches-list] r2113 - in trunk/MonoDevelop: . Core/src/MonoDevelop.Base Core/src/MonoDevelop.Base/Gui/Dialogs build
commit-watcher at mono-cvs.ximian.com
commit-watcher at mono-cvs.ximian.com
Mon Jan 3 15:04:41 EST 2005
Author: tberman
Date: 2005-01-03 15:04:41 -0500 (Mon, 03 Jan 2005)
New Revision: 2113
Removed:
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/ViewGPLDialog.cs
trunk/MonoDevelop/build/doc/
Modified:
trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am
trunk/MonoDevelop/build/Makefile.am
trunk/MonoDevelop/configure.in
Log:
removing the View GPL Dialog code. lets be honest. no one uses it.
Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/ViewGPLDialog.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/ViewGPLDialog.cs 2005-01-03 20:01:40 UTC (rev 2112)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Gui/Dialogs/ViewGPLDialog.cs 2005-01-03 20:04:41 UTC (rev 2113)
@@ -1,49 +0,0 @@
-// <file>
-// <copyright see="prj:///doc/copyright.txt"/>
-// <license see="prj:///doc/license.txt"/>
-// <owner name="Mike Krüger" email="mike at icsharpcode.net"/>
-// <version value="$version"/>
-// </file>
-
-using System;
-using System.IO;
-using Gtk;
-
-using MonoDevelop.Core.Properties;
-using MonoDevelop.Services;
-
-namespace MonoDevelop.Gui.Dialogs
-{
- public class ViewGPLDialog : IDisposable
- {
- [Glade.Widget] Gtk.TextView view;
- [Glade.Widget] Gtk.Dialog GPLDialog;
-
- public ViewGPLDialog ()
- {
- string filename = Runtime.FileUtilityService.SharpDevelopRootPath +
- System.IO.Path.DirectorySeparatorChar + "doc" +
- System.IO.Path.DirectorySeparatorChar + "license.txt";
-
- if (Runtime.FileUtilityService.TestFileExists(filename)) {
- Glade.XML gplDialog = new Glade.XML (null, "Base.glade", "GPLDialog", null);
- gplDialog.Autoconnect (this);
- GPLDialog.DefaultResponse = ResponseType.Close;
- GPLDialog.TransientFor = (Gtk.Window) WorkbenchSingleton.Workbench;
- StreamReader streamReader = new StreamReader (filename);
- view.Buffer.Text = streamReader.ReadToEnd ();
- }
- }
-
- public void Dispose ()
- {
- GPLDialog.Dispose ();
- }
-
- protected void OnCloseButtonClicked(object sender, EventArgs e)
- {
- GPLDialog.Hide();
- }
-
- }
-}
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am 2005-01-03 20:01:40 UTC (rev 2112)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Base/Makefile.am 2005-01-03 20:04:41 UTC (rev 2113)
@@ -68,7 +68,6 @@
Gui/WorkbenchWindowCollection.cs \
Gui/WorkbenchSingleton.cs \
Gui/IMementoCapable.cs \
-Gui/Dialogs/ViewGPLDialog.cs \
Gui/Dialogs/CommonAboutDialog.cs \
Gui/Dialogs/OptionPanels/ProjectOptions/CompileFileProjectOptions.cs \
Gui/Dialogs/OptionPanels/ProjectOptions/DeployFileOptions.cs \
Modified: trunk/MonoDevelop/build/Makefile.am
===================================================================
--- trunk/MonoDevelop/build/Makefile.am 2005-01-03 20:01:40 UTC (rev 2112)
+++ trunk/MonoDevelop/build/Makefile.am 2005-01-03 20:04:41 UTC (rev 2113)
@@ -1,4 +1,4 @@
-SUBDIRS = data doc
+SUBDIRS = data
all:
Modified: trunk/MonoDevelop/configure.in
===================================================================
--- trunk/MonoDevelop/configure.in 2005-01-03 20:01:40 UTC (rev 2112)
+++ trunk/MonoDevelop/configure.in 2005-01-03 20:04:41 UTC (rev 2113)
@@ -195,7 +195,6 @@
build/data/options/Makefile
build/data/resources/css/Makefile
build/data/resources/icons/Makefile
-build/doc/Makefile
Core/src/AddIns/DebuggerAddIn/AssemblyInfo.cs
Core/src/AddIns/DisplayBindings/SourceEditor/AssemblyInfo.cs
Core/src/MonoDevelop.Startup/AssemblyInfo.cs
More information about the Monodevelop-patches-list
mailing list