Reen: modernize C++11

* use nullptr
This commit is contained in:
wmayer
2022-03-23 19:13:34 +01:00
parent 6a69efc4a6
commit 7633a079b4
11 changed files with 22 additions and 22 deletions

View File

@@ -256,7 +256,7 @@ TaskSegmentation::TaskSegmentation(Mesh::Feature* mesh)
{
widget = new Segmentation(mesh);
taskbox = new Gui::TaskView::TaskBox(
QPixmap(), widget->windowTitle(), false, 0);
QPixmap(), widget->windowTitle(), false, nullptr);
taskbox->groupLayout()->addWidget(widget);
Content.push_back(taskbox);
}