forked from qt-creator/qt-creator
Fix warning: "Missing emit keyword on signal call"
[-Wclazy-incorrect-emit] Change-Id: I93bdc6e23cdaccf35c9899ae16870ccc65a54f80 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
@@ -1856,7 +1856,7 @@ QMenu *WatchModel::createFormatMenu(WatchItem *item, QWidget *parent)
|
||||
auto addBaseChangeAction = [this, menu](const QString &text, int base) {
|
||||
addCheckableAction(menu, text, true, theUnprintableBase == base, [this, base] {
|
||||
theUnprintableBase = base;
|
||||
layoutChanged(); // FIXME
|
||||
emit layoutChanged(); // FIXME
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user