Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLluis Sanchez <lluis@novell.com>2010-02-02 02:33:07 +0300
committerLluis Sanchez <lluis@novell.com>2010-02-02 02:33:07 +0300
commit4125d296714684ecf2e425eb9c530482ecef102d (patch)
tree3321bf96c1aa00bd5222d437ba1a671828bb6efb
parent747b2d8c4937a30fd0cdb24468d3a8901b0575b2 (diff)
2009-12-11 Lluis Sanchez Gual <lluis@novell.com>extras/MonoDevelop.Debugger.Gdb/2.2.1
* GdbBacktrace.cs: Track api changes. svn path=/branches/monodevelop/extras/MonoDevelop.Debugger.Gdb/2.2/; revision=150681
-rw-r--r--extras/MonoDevelop.Debugger.Gdb/ChangeLog4
-rw-r--r--extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs6
-rwxr-xr-xextras/MonoDevelop.Debugger.Gdb/configure4
3 files changed, 9 insertions, 5 deletions
diff --git a/extras/MonoDevelop.Debugger.Gdb/ChangeLog b/extras/MonoDevelop.Debugger.Gdb/ChangeLog
index 4fdb23e5a0..2c31c02a7f 100644
--- a/extras/MonoDevelop.Debugger.Gdb/ChangeLog
+++ b/extras/MonoDevelop.Debugger.Gdb/ChangeLog
@@ -6,6 +6,10 @@
* configure.in: Bump MD version.
+2009-12-11 Lluis Sanchez Gual <lluis@novell.com>
+
+ * GdbBacktrace.cs: Track api changes.
+
2009-11-20 Lluis Sanchez Gual <lluis@novell.com>
* GdbSessionFactory.cs: Implement Id property.
diff --git a/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs b/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
index 8aced49997..22d66b6002 100644
--- a/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
+++ b/extras/MonoDevelop.Debugger.Gdb/GdbBacktrace.cs
@@ -221,7 +221,7 @@ namespace MonoDevelop.Debugger.Gdb
} else if (value == "{...}" || typeName.EndsWith ("*") || nchild > 0) {
val = ObjectValue.CreateObject (this, new ObjectPath (vname), typeName, value, flags, null);
} else {
- val = ObjectValue.CreatePrimitive (this, new ObjectPath (vname), typeName, value, flags);
+ val = ObjectValue.CreatePrimitive (this, new ObjectPath (vname), typeName, new EvaluationResult (value), flags);
}
val.Name = name;
return val;
@@ -252,11 +252,11 @@ namespace MonoDevelop.Debugger.Gdb
return children.ToArray ();
}
- public string SetValue (ObjectPath path, string value)
+ public EvaluationResult SetValue (ObjectPath path, string value)
{
session.SelectThread (threadId);
session.RunCommand ("-var-assign", path.Join ("."), value);
- return value;
+ return new EvaluationResult (value);
}
public ObjectValue GetValue (ObjectPath path, EvaluationOptions options)
diff --git a/extras/MonoDevelop.Debugger.Gdb/configure b/extras/MonoDevelop.Debugger.Gdb/configure
index 108f4c60ec..9549761dc3 100755
--- a/extras/MonoDevelop.Debugger.Gdb/configure
+++ b/extras/MonoDevelop.Debugger.Gdb/configure
@@ -1,10 +1,10 @@
#!/bin/bash
-VERSION=2.2
+VERSION=2.2.1
PACKAGE=monodevelop-debugger-gdb
prefix=/usr/local
config=DEBUG
configurations=" RELEASE DEBUG"
-common_packages=" monodevelop;2.2"
+common_packages=" monodevelop;2.2.1"
usage ()