summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/extension-editor.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-06-15 10:46:15 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2018-06-18 12:27:01 +0000
commitf4349fb3e45bd44cef0e2b69af4c9b4cf35dcf43 (patch)
tree7c6044fd3a17a2665841959dac9b3b2110b27924 /src/ui/dialog/extension-editor.cpp
parentRun clang-tidy’s modernize-use-override pass. (diff)
downloadinkscape-f4349fb3e45bd44cef0e2b69af4c9b4cf35dcf43.tar.gz
inkscape-f4349fb3e45bd44cef0e2b69af4c9b4cf35dcf43.zip
Run clang-tidy’s modernize-use-nullptr pass.
This replaces all NULL or 0 with nullptr when assigned to or returned as a pointer.
Diffstat (limited to 'src/ui/dialog/extension-editor.cpp')
-rw-r--r--src/ui/dialog/extension-editor.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/dialog/extension-editor.cpp b/src/ui/dialog/extension-editor.cpp
index 14248cc4b..2413d51e0 100644
--- a/src/ui/dialog/extension-editor.cpp
+++ b/src/ui/dialog/extension-editor.cpp
@@ -150,24 +150,24 @@ void ExtensionEditor::on_pagelist_selection_changed(void)
Inkscape::Extension::Extension * ext = Inkscape::Extension::db.get(id.c_str());
/* Make sure we have all the widges */
- Gtk::Widget * info = NULL;
- Gtk::Widget * help = NULL;
- Gtk::Widget * params = NULL;
+ Gtk::Widget * info = nullptr;
+ Gtk::Widget * help = nullptr;
+ Gtk::Widget * params = nullptr;
- if (ext != NULL) {
+ if (ext != nullptr) {
info = ext->get_info_widget();
help = ext->get_help_widget();
params = ext->get_params_widget();
}
/* Place them in the pages */
- if (info != NULL) {
+ if (info != nullptr) {
_notebook_info.add(*info);
}
- if (help != NULL) {
+ if (help != nullptr) {
_notebook_help.add(*help);
}
- if (params != NULL) {
+ if (params != nullptr) {
_notebook_params.add(*params);
}