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

@@ -75,17 +75,17 @@ protected:
public:
ToolPanel (Glib::ustring toolName = "", bool need11 = false) : toolName(toolName), listener(NULL), tmp(NULL), batchMode(false), multiImage(false), need100Percent(need11) {}
ToolPanel (Glib::ustring toolName = "", bool need11 = false) : toolName(toolName), listener(nullptr), tmp(nullptr), batchMode(false), multiImage(false), need100Percent(need11) {}
virtual ~ToolPanel() {}
virtual void setParent (Gtk::Box* parent) {}
virtual Gtk::Box* getParent ()
{
return NULL;
return nullptr;
}
virtual MyExpander* getExpander ()
{
return NULL;
return nullptr;
}
virtual void setExpanded (bool expanded) {}
virtual bool getExpanded ()
@@ -101,13 +101,13 @@ public:
listener = tpl;
}
virtual void setEditProvider (EditDataProvider *provider) {}
virtual void read (const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited = NULL) {}
virtual void write (rtengine::procparams::ProcParams* pp, ParamsEdited* pedited = NULL) {}
virtual void read (const rtengine::procparams::ProcParams* pp, const ParamsEdited* pedited = nullptr) {}
virtual void write (rtengine::procparams::ProcParams* pp, ParamsEdited* pedited = nullptr) {}
virtual void trimValues (rtengine::procparams::ProcParams* pp)
{
return;
}
virtual void setDefaults (const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited = NULL) {}
virtual void setDefaults (const rtengine::procparams::ProcParams* defParams, const ParamsEdited* pedited = nullptr) {}
virtual void autoOpenCurve () {}
/** @brief Disable the event broadcasting mechanism
@@ -116,12 +116,12 @@ public:
*/
bool disableListener ()
{
if (tmp == NULL) {
if (tmp == nullptr) {
tmp = listener;
}
bool prevState = listener != NULL;
listener = NULL;
bool prevState = listener != nullptr;
listener = nullptr;
return prevState;
}
@@ -129,11 +129,11 @@ public:
*/
void enableListener ()
{
if (tmp != NULL) {
if (tmp != nullptr) {
listener = tmp;
}
tmp = NULL;
tmp = nullptr;
}
virtual void setBatchMode (bool batchMode)