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

« back to all changes in this revision

Viewing changes to src/addins/NUnit/Gui/TestNodeBuilder.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:
166
166
                        UnitTestResult res = test.GetLastResult ();
167
167
                        loc = test.SourceCodeLocation;
168
168
                        if (loc != null)
169
 
                                IdeApp.Workbench.OpenDocument (loc.FileName, loc.Line, loc.Column, true);
 
169
                                IdeApp.Workbench.OpenDocument (loc.FileName, loc.Line, loc.Column);
170
170
                }
171
171
                
172
172
                [CommandHandler (TestCommands.GoToFailure)]
180
180
                        if (loc == null)
181
181
                                loc = test.SourceCodeLocation;
182
182
                        if (loc != null)
183
 
                                IdeApp.Workbench.OpenDocument (loc.FileName, loc.Line, loc.Column, true);
 
183
                                IdeApp.Workbench.OpenDocument (loc.FileName, loc.Line, loc.Column);
184
184
                }
185
185
                
186
186
                [CommandUpdateHandler (TestCommands.ShowTestCode)]