forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.14'
Change-Id: I2ae0eb18782224e48cd20d41907f9dfea6ee1771
This commit is contained in:
@@ -3441,7 +3441,7 @@ public:
|
||||
cb->setCurrentIndex(index);
|
||||
});
|
||||
const auto defaultImplTargetLayout = new QHBoxLayout;
|
||||
defaultImplTargetLayout->addWidget(new QLabel(tr("Default Implementation Location:")));
|
||||
defaultImplTargetLayout->addWidget(new QLabel(tr("Default implementation location:")));
|
||||
defaultImplTargetLayout->addWidget(defaultImplTargetComboBox);
|
||||
|
||||
const auto candidatesLayout = new QGridLayout;
|
||||
@@ -3518,6 +3518,10 @@ public:
|
||||
Function * const func = s->type()->asFunctionType();
|
||||
if (!func || func->isSignal() || func->isFriend())
|
||||
continue;
|
||||
Overview oo = CppCodeStyleSettings::currentProjectCodeStyleOverview();
|
||||
oo.showFunctionSignatures = true;
|
||||
if (magicQObjectFunctions().contains(oo.prettyName(func->name())))
|
||||
continue;
|
||||
m_declarations << s;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user