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

github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs')
-rw-r--r--Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs b/Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs
index 6833e9a..be3a8cb 100644
--- a/Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs
+++ b/Mono.Debugger.Soft/Mono.Debugger.Soft/Location.cs
@@ -48,7 +48,10 @@ namespace Mono.Debugger.Soft
get {
return line_number;
}
- }
+ set {
+ this.line_number = value;
+ }
+ }
// Since protocol version 2.19, 0 in earlier protocol versions
public int ColumnNumber {