]> git.pld-linux.org Git - packages/mono-debugger.git/commitdiff
- outdated
authorMichal Moskal <michal@moskal.me>
Sun, 14 Sep 2003 17:02:10 +0000 (17:02 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mono-debugger-recent-gtk-sharp.patch -> 1.2

mono-debugger-recent-gtk-sharp.patch [deleted file]

diff --git a/mono-debugger-recent-gtk-sharp.patch b/mono-debugger-recent-gtk-sharp.patch
deleted file mode 100644 (file)
index 845a71c..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-Index: frontends/gui/DisassemblerView.cs
-===================================================================
-RCS file: /mono/debugger/frontends/gui/DisassemblerView.cs,v
-retrieving revision 1.23
-diff -u -r1.23 DisassemblerView.cs
---- frontends/gui/DisassemblerView.cs  25 Feb 2003 14:26:12 -0000      1.23
-+++ frontends/gui/DisassemblerView.cs  26 Feb 2003 20:47:26 -0000
-@@ -131,7 +131,7 @@
-                                       string contents = String.Format (
-                                               "  {0:x}   {1}\n", frame.TargetAddress, asm_line.Text);
--                                      text_buffer.Insert (iter, contents, contents.Length);
-+                                      text_buffer.Insert (iter, contents);
-                                       new_lines = 1;
-                                       break;
-                               }
-@@ -151,7 +151,7 @@
-                               source_view.ScrollToIter (iter, 0.0, true, 0.0, 0.5);
-                               string contents = "\n" + method.SourceBuffer.Contents;
--                              text_buffer.Insert (iter, contents, contents.Length);
-+                              text_buffer.Insert (iter, contents);
-                               index++;
-                               DynamicMethod new_dynamic = new DynamicMethod (method, line + 1);
-Index: frontends/gui/OutputWindow.cs
-===================================================================
-RCS file: /mono/debugger/frontends/gui/OutputWindow.cs,v
-retrieving revision 1.3
-diff -u -r1.3 OutputWindow.cs
---- frontends/gui/OutputWindow.cs      25 Dec 2002 19:10:40 -0000      1.3
-+++ frontends/gui/OutputWindow.cs      26 Feb 2003 20:47:26 -0000
-@@ -51,7 +51,7 @@
-               // </summary>
-                 public override void Write (bool is_stderr, string output)
-               {
--                      output_buffer.Insert (output_buffer.EndIter, output, output.Length);
-+                      output_buffer.Insert (output_buffer.EndIter, output);
-                       if (is_stderr) {
-                               Gtk.TextIter start_iter;
This page took 0.066533 seconds and 4 git commands to generate.