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

@@ -79,12 +79,12 @@ osx_open_file_cb (GtkosxApplication *app, gchar *path_, gpointer data)
#endif // __APPLE__
RTWindow::RTWindow ()
: mainNB(NULL)
, bpanel(NULL)
, splash(NULL)
, btn_fullscreen(NULL)
, epanel(NULL)
, fpanel(NULL)
: mainNB(nullptr)
, bpanel(nullptr)
, splash(nullptr)
, btn_fullscreen(nullptr)
, epanel(nullptr)
, fpanel(nullptr)
{
cacheMgr->init ();
@@ -143,19 +143,19 @@ RTWindow::RTWindow ()
signal_key_press_event().connect( sigc::mem_fun(*this, &RTWindow::keyPressed) );
if(simpleEditor) {
epanel = Gtk::manage( new EditorPanel (NULL) );
epanel = Gtk::manage( new EditorPanel (nullptr) );
epanel->setParent (this);
add (*epanel);
show_all ();
pldBridge = NULL; // No progress listener
pldBridge = nullptr; // No progress listener
CacheManager* cm = CacheManager::getInstance();
Thumbnail* thm = cm->getEntry( argv1 );
if(thm) {
int error;
rtengine::InitialImage *ii = rtengine::InitialImage::load(argv1, thm->getType() == FT_Raw, &error, NULL);
rtengine::InitialImage *ii = rtengine::InitialImage::load(argv1, thm->getType() == FT_Raw, &error, nullptr);
epanel->open( thm, ii );
}
} else {
@@ -299,7 +299,7 @@ RTWindow::~RTWindow()
delete pldBridge;
}
pldBridge = NULL;
pldBridge = nullptr;
#if defined(__APPLE__)
g_object_unref (osxApp);
#endif
@@ -379,7 +379,7 @@ void RTWindow::on_realize ()
splash->show ();
} else {
delete splash;
splash = NULL;
splash = nullptr;
}
}
}
@@ -552,7 +552,7 @@ bool RTWindow::keyPressed (GdkEventKey* event)
#endif
if (try_quit) {
if (!on_delete_event(0)) {
if (!on_delete_event(nullptr)) {
gtk_main_quit();
}
}
@@ -844,7 +844,7 @@ void RTWindow::updateHistogramPosition (int oldPosition, int newPosition)
bool RTWindow::splashClosed(GdkEventAny* event)
{
delete splash;
splash = NULL;
splash = nullptr;
return true;
}