aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Package/QML/Debugging/QmlDebugger.cs
diff options
context:
space:
mode:
Diffstat (limited to 'QtVsTools.Package/QML/Debugging/QmlDebugger.cs')
-rw-r--r--QtVsTools.Package/QML/Debugging/QmlDebugger.cs11
1 files changed, 2 insertions, 9 deletions
diff --git a/QtVsTools.Package/QML/Debugging/QmlDebugger.cs b/QtVsTools.Package/QML/Debugging/QmlDebugger.cs
index 0270e57c..d843726a 100644
--- a/QtVsTools.Package/QML/Debugging/QmlDebugger.cs
+++ b/QtVsTools.Package/QML/Debugging/QmlDebugger.cs
@@ -284,8 +284,7 @@ namespace QtVsTools.Qml.Debug
} else {
foreach (int breakpointId in evtBreak.Body.Breakpoints) {
- IBreakpoint breakpoint;
- if (!breakpoints.TryGetValue(breakpointId, out breakpoint))
+ if (!breakpoints.TryGetValue(breakpointId, out IBreakpoint breakpoint))
continue;
breakpoint.NotifyBreak();
}
@@ -428,13 +427,7 @@ namespace QtVsTools.Qml.Debug
public static bool CheckCommandLine(string execPath, string args)
{
- ushort portFrom;
- ushort portTo;
- string hostName;
- string fileName;
- bool block;
- return ParseCommandLine(
- execPath, args, out portFrom, out portTo, out hostName, out fileName, out block);
+ return ParseCommandLine(execPath, args, out _, out _, out _, out _, out _);
}
/// <summary>