Mercurial > hg > svgui
diff widgets/PluginParameterDialog.cpp @ 1414:fa986b91d77f
Merge from branch fix-static-analysis
author | Chris Cannam |
---|---|
date | Wed, 09 Jan 2019 15:24:51 +0000 |
parents | c8a6fd3f9dff |
children | 11660e0c896f |
line wrap: on
line diff
--- a/widgets/PluginParameterDialog.cpp Wed Jan 09 14:41:52 2019 +0000 +++ b/widgets/PluginParameterDialog.cpp Wed Jan 09 15:24:51 2019 +0000 @@ -51,7 +51,7 @@ m_stepSize(0), m_blockSize(0), m_windowType(HanningWindow), - m_parameterBox(0), + m_parameterBox(nullptr), m_currentSelectionOnly(false) { setWindowTitle(tr("Plugin Parameters")); @@ -89,7 +89,7 @@ QLabel *copyrightLabel = new QLabel(plugin->getCopyright().c_str()); copyrightLabel->setWordWrap(true); - QLabel *descriptionLabel = 0; + QLabel *descriptionLabel = nullptr; if (plugin->getDescription() != "") { descriptionLabel = new QLabel(plugin->getDescription().c_str()); descriptionLabel->setWordWrap(true);