mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Source: Remove redundant lambda parameter lists
This commit is contained in:
@ -113,7 +113,7 @@ QTextCharFormat GetCommentCharFormat()
|
||||
ControlExpressionSyntaxHighlighter::ControlExpressionSyntaxHighlighter(QTextDocument* parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
connect(parent, &QTextDocument::contentsChanged, this, [this, parent]() { Highlight(parent); });
|
||||
connect(parent, &QTextDocument::contentsChanged, this, [this, parent] { Highlight(parent); });
|
||||
}
|
||||
|
||||
void QComboBoxWithMouseWheelDisabled::wheelEvent(QWheelEvent* event)
|
||||
|
Reference in New Issue
Block a user