summaryrefslogtreecommitdiffstats
path: root/src/widgets/ege-output-action.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/widgets/ege-output-action.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/widgets/ege-output-action.cpp')
-rw-r--r--src/widgets/ege-output-action.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/widgets/ege-output-action.cpp b/src/widgets/ege-output-action.cpp
index e7d74a25f..847a4f0a1 100644
--- a/src/widgets/ege-output-action.cpp
+++ b/src/widgets/ege-output-action.cpp
@@ -163,14 +163,14 @@ void ege_output_action_set_property( GObject* obj, guint propId, const GValue *v
GtkWidget* create_tool_item( GtkAction* action )
{
- GtkWidget* item = 0;
+ GtkWidget* item = nullptr;
if ( IS_EGE_OUTPUT_ACTION(action) )
{
GValue value;
auto hb = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 5);
gtk_box_set_homogeneous(GTK_BOX(hb), FALSE);
- GtkWidget* lbl = 0;
+ GtkWidget* lbl = nullptr;
memset( &value, 0, sizeof(value) );
g_value_init( &value, G_TYPE_STRING );
@@ -183,7 +183,7 @@ GtkWidget* create_tool_item( GtkAction* action )
gtk_container_add( GTK_CONTAINER(hb), lbl );
if ( EGE_OUTPUT_ACTION(action)->private_data->useMarkup ) {
- lbl = gtk_label_new(NULL);
+ lbl = gtk_label_new(nullptr);
gtk_label_set_markup( GTK_LABEL(lbl), sss ? sss : " " );
} else {
lbl = gtk_label_new( sss ? sss : " " );
@@ -211,7 +211,7 @@ void fixup_labels( GObject *gobject, GParamSpec *arg1, gpointer user_data )
if ( arg1 && arg1->name && (strcmp("label", arg1->name) == 0) ) {
GSList* proxies = gtk_action_get_proxies( GTK_ACTION(gobject) );
- gchar* str = 0;
+ gchar* str = nullptr;
g_object_get( gobject, "label", &str, NULL );
Glib::ustring str2(str);
(void)user_data;