mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Fix a clang-format issue that somehow got in past my pre-commit hook...
This commit is contained in:
@@ -595,10 +595,12 @@ CaptureDialog *MainWindow::createCaptureDialog()
|
||||
CaptureDialog *ret = new CaptureDialog(
|
||||
m_Ctx,
|
||||
[this](const QString &exe, const QString &workingDir, const QString &cmdLine,
|
||||
const QList<EnvironmentModification> &env,
|
||||
CaptureOptions opts) { return this->OnCaptureTrigger(exe, workingDir, cmdLine, env, opts); },
|
||||
const QList<EnvironmentModification> &env, CaptureOptions opts) {
|
||||
return this->OnCaptureTrigger(exe, workingDir, cmdLine, env, opts);
|
||||
},
|
||||
[this](uint32_t PID, const QList<EnvironmentModification> &env, const QString &name,
|
||||
CaptureOptions opts) { return this->OnInjectTrigger(PID, env, name, opts); }, this);
|
||||
CaptureOptions opts) { return this->OnInjectTrigger(PID, env, name, opts); },
|
||||
this);
|
||||
ret->setObjectName("capDialog");
|
||||
return ret;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user