mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-18 10:50:05 +00: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