fix -Wextra in Mesh
This commit is contained in:
@@ -85,19 +85,26 @@ QVariant PropertyMeshKernelItem::toolTip(const App::Property* prop) const
|
||||
|
||||
void PropertyMeshKernelItem::setValue(const QVariant& value)
|
||||
{
|
||||
Q_UNUSED(value);
|
||||
}
|
||||
|
||||
QWidget* PropertyMeshKernelItem::createEditor(QWidget* parent, const QObject* receiver, const char* method) const
|
||||
{
|
||||
Q_UNUSED(parent);
|
||||
Q_UNUSED(receiver);
|
||||
Q_UNUSED(method);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void PropertyMeshKernelItem::setEditorData(QWidget *editor, const QVariant& data) const
|
||||
{
|
||||
Q_UNUSED(editor);
|
||||
Q_UNUSED(data);
|
||||
}
|
||||
|
||||
QVariant PropertyMeshKernelItem::editorData(QWidget *editor) const
|
||||
{
|
||||
Q_UNUSED(editor);
|
||||
return QVariant();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user