Apply modernize-use-nullptr

Setup:
- `mkdir tidy; cd tidy`
- `cmake .. -DCMAKE_BUILD_TYPE=debug -DPROC_TARGET_NUMBER=1 -DCACHE_NAME_SUFFIX=4 -DBINDIR=. -DDATADIR=. -DBUILD_BUNDLE=ON -DWITH_LTO=OFF -DOPTION_OMP=OFF -DCMAKE_EXPORT_COMPILE_COMMANDS=ON`
- `cd ..`
- `find -name '*.cc' -exec clang-tidy-3.8 -header-filter=.* -p=tidy -fix-errors -checks=modernize-use-nullptr {} \;`
This commit is contained in:
Flössie
2016-10-12 17:48:40 +02:00
parent 29d5329f3f
commit 0731975ff0
218 changed files with 2406 additions and 2406 deletions

View File

@@ -171,7 +171,7 @@ void FlatCurveEditorSubGroup::stopNumericalAdjustment()
*/
void FlatCurveEditorSubGroup::refresh(CurveEditor *curveToRefresh)
{
if (curveToRefresh != NULL && curveToRefresh == static_cast<FlatCurveEditor*>(parent->displayedCurve)) {
if (curveToRefresh != nullptr && curveToRefresh == static_cast<FlatCurveEditor*>(parent->displayedCurve)) {
switch(FlatCurveType(curveToRefresh->curveType->getSelected())) {
case (FCT_MinMaxCPoints):
CPointsCurve->refresh();
@@ -192,7 +192,7 @@ void FlatCurveEditorSubGroup::editModeSwitchedOff ()
// toggling off all edit buttons, even if only one is toggle on
bool prevState = editCPointsConn.block(true);
editCPoints->set_active(false);
CPointsCurve->pipetteMouseOver(NULL, NULL, 0);
CPointsCurve->pipetteMouseOver(nullptr, nullptr, 0);
CPointsCurve->setDirty(true);
if (!prevState) {
@@ -288,11 +288,11 @@ void FlatCurveEditorSubGroup::switchGUI()
ColorProvider *barColorProvider = dCurve->getLeftBarColorProvider();
std::vector<GradientMilestone> bgGradient = dCurve->getLeftBarBgGradient();
if (barColorProvider == NULL && bgGradient.size() == 0) {
if (barColorProvider == nullptr && bgGradient.size() == 0) {
// dCurve has no left colored bar, so we delete the object
if (leftBar) {
delete leftBar;
leftBar = NULL;
leftBar = nullptr;
}
} else {
// dCurve has a ColorProvider or a background gradient defined, so we create/update the object
@@ -305,7 +305,7 @@ void FlatCurveEditorSubGroup::switchGUI()
leftBar->setColorProvider(barColorProvider, dCurve->getLeftBarCallerId());
leftBar->setBgGradient (bgGradient);
} else {
leftBar->setColorProvider(NULL, -1);
leftBar->setColorProvider(nullptr, -1);
leftBar->setBgGradient (bgGradient);
}
}
@@ -313,11 +313,11 @@ void FlatCurveEditorSubGroup::switchGUI()
barColorProvider = dCurve->getBottomBarColorProvider();
bgGradient = dCurve->getBottomBarBgGradient();
if (barColorProvider == NULL && bgGradient.size() == 0) {
if (barColorProvider == nullptr && bgGradient.size() == 0) {
// dCurve has no bottom colored bar, so we delete the object
if (bottomBar) {
delete bottomBar;
bottomBar = NULL;
bottomBar = nullptr;
}
} else {
// dCurve ave a ColorProvider or a background gradient defined, so we create/update the object
@@ -330,7 +330,7 @@ void FlatCurveEditorSubGroup::switchGUI()
bottomBar->setColorProvider(barColorProvider, dCurve->getBottomBarCallerId());
bottomBar->setBgGradient (bgGradient);
} else {
bottomBar->setColorProvider(NULL, -1);
bottomBar->setColorProvider(nullptr, -1);
bottomBar->setBgGradient (bgGradient);
}
}