~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/LocalsPad.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
                {
79
79
                        if (null == a || null == z)
80
80
                                return a == z;
81
 
                        return a.SourceLocation.Filename.Equals (z.SourceLocation.Filename, StringComparison.Ordinal) &&
82
 
                               a.SourceLocation.Method.Equals (z.SourceLocation.Method, StringComparison.Ordinal);
 
81
                        return a.SourceLocation.FileName.Equals (z.SourceLocation.FileName, StringComparison.Ordinal) &&
 
82
                               a.SourceLocation.MethodName.Equals (z.SourceLocation.MethodName, StringComparison.Ordinal);
83
83
                }
84
84
        }
85
85
}