[Monodevelop-patches-list] r2461 - in trunk/MonoDevelop: . Core/src/ICSharpCode.SharpRefactory/src/Parser/AST/Expressions Core/src/MonoDevelop.Gui.Utils
John Luke <jluke@cfl.rr.com>
jluke at mono-cvs.ximian.com
Sat Apr 16 19:26:09 EDT 2005
Author: jluke
Date: 2005-04-16 19:26:09 -0400 (Sat, 16 Apr 2005)
New Revision: 2461
Removed:
trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Glue.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config.in
trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/README
Modified:
trunk/MonoDevelop/ChangeLog
trunk/MonoDevelop/Core/src/ICSharpCode.SharpRefactory/src/Parser/AST/Expressions/PrimitiveExpression.cs
trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/ChangeLog
trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Makefile.am
trunk/MonoDevelop/configure.in
Log:
remove some old stuff
Modified: trunk/MonoDevelop/ChangeLog
===================================================================
--- trunk/MonoDevelop/ChangeLog 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/ChangeLog 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,6 +1,7 @@
2005-04-16 John Luke <john.luke at gmail.com>
* configure.in: bump gtk# dep to 1.9.3 for latest dock changes
+ remove MonoDevelop.Gui.Utils config file
2005-04-14 Raja R Harinath <rharinath at novell.com>
Modified: trunk/MonoDevelop/Core/src/ICSharpCode.SharpRefactory/src/Parser/AST/Expressions/PrimitiveExpression.cs
===================================================================
--- trunk/MonoDevelop/Core/src/ICSharpCode.SharpRefactory/src/Parser/AST/Expressions/PrimitiveExpression.cs 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/ICSharpCode.SharpRefactory/src/Parser/AST/Expressions/PrimitiveExpression.cs 2005-04-16 23:26:09 UTC (rev 2461)
@@ -33,7 +33,7 @@
this.stringValue = stringValue;
}
- static NumberFormatInfo nfi = CultureInfo.InvariantCulture.NumberFormat;
+ //static NumberFormatInfo nfi = CultureInfo.InvariantCulture.NumberFormat;
public override object AcceptVisitor(IASTVisitor visitor, object data)
{
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/ChangeLog
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/ChangeLog 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/ChangeLog 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,3 +1,10 @@
+2005-04-16 John Luke <john.luke at gmail.com>
+
+ * README: remove
+ * MonoDevelop.Gui.Utils.dll.config.in:
+ * Glue.cs: kill
+ * Makefile.am: update
+
2005-01-26 John Luke <john.luke at gmail.com>
* Vfs/Vfs.cs: kill
Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Glue.cs
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Glue.cs 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Glue.cs 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,24 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-
-namespace MonoDevelop.Gui.Utils
-{
-
- public class Glue
- {
-
- private Glue ()
- {
- }
-
- [DllImport ("monodevelop")]
- static extern void lmd_propagate_eventkey (IntPtr Handle, ref Gdk.EventKey key);
-
- public static void SimulateKeyPress (IntPtr Handle, ref Gdk.EventKey key)
- {
- lmd_propagate_eventkey (Handle, ref key);
- }
-
- }
-}
-
Modified: trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Makefile.am
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Makefile.am 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/Makefile.am 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,5 +1,4 @@
DLLNAME = MonoDevelop.Gui.Utils.dll
-CONFIG = $(DLLNAME).config
DLL = $(top_builddir)/build/bin/$(DLLNAME)
REFERENCES = /r:System.Drawing \
@@ -15,22 +14,19 @@
DirectoryArchive/TarDecompressor.cs \
DirectoryArchive/ZipDecompressor.cs \
DirectoryArchive/Bz2Support.cs \
-DirectoryArchive/GzSupport.cs \
-Glue.cs
+DirectoryArchive/GzSupport.cs
build_sources = $(addprefix $(srcdir)/, $(FILES))
all: $(DLL)
$(DLL): $(build_sources)
- $(CSC) -out:$@ /target:library $(REFERENCES) $(build_sources) \
- && cp $(CONFIG) $(top_builddir)/build/bin/.
+ $(CSC) -out:$@ /target:library $(REFERENCES) $(build_sources)
assemblydir = $(libdir)/monodevelop/bin
-assembly_DATA = $(DLL) $(CONFIG)
+assembly_DATA = $(DLL)
CLEANFILES = $(DLL) $(DLL).mdb
-DISTCLEANFILES = $(CONFIG)
-EXTRA_DIST = $(FILES) $(CONFIG).in
+EXTRA_DIST = $(FILES)
Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config.in
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config.in 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config.in 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,4 +0,0 @@
-<configuration>
- <dllmap dll="libgtk-2.0-0.dll" target="libgtk-x11-2.0 at LIB_PREFIX@.0 at LIB_SUFFIX@" />
- <dllmap dll="gnomevfs-2" target="libgnomevfs-2 at LIB_PREFIX@.0 at LIB_SUFFIX@"/>
-</configuration>
Deleted: trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/README
===================================================================
--- trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/README 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/Core/src/MonoDevelop.Gui.Utils/README 2005-04-16 23:26:09 UTC (rev 2461)
@@ -1,7 +0,0 @@
-Here are some custom widgets that could be reused externally
-they should live under the MonoDevelop.Gui namespace
-and not conflict with Gtk# names
-
-i.e.
-MyCustomWidget should not be ambigous when using both
-MonoDevelop.Gui and Gtk or Gnome
Modified: trunk/MonoDevelop/configure.in
===================================================================
--- trunk/MonoDevelop/configure.in 2005-04-16 23:14:46 UTC (rev 2460)
+++ trunk/MonoDevelop/configure.in 2005-04-16 23:26:09 UTC (rev 2461)
@@ -188,7 +188,6 @@
Core/src/MonoDevelop.Core/Makefile
Core/src/MonoDevelop.Dock/Makefile
Core/src/MonoDevelop.Gui.Utils/Makefile
-Core/src/MonoDevelop.Gui.Utils/MonoDevelop.Gui.Utils.dll.config
Core/src/MonoDevelop.Gui.Widgets/Makefile
Core/src/ICSharpCode.SharpAssembly/Makefile
Core/src/ICSharpCode.SharpRefactory/Makefile
More information about the Monodevelop-patches-list
mailing list