summaryrefslogtreecommitdiff
path: root/glib/src/optionentry.ccg
diff options
context:
space:
mode:
Diffstat (limited to 'glib/src/optionentry.ccg')
-rw-r--r--glib/src/optionentry.ccg6
1 files changed, 3 insertions, 3 deletions
diff --git a/glib/src/optionentry.ccg b/glib/src/optionentry.ccg
index 9a64f102..37641692 100644
--- a/glib/src/optionentry.ccg
+++ b/glib/src/optionentry.ccg
@@ -75,7 +75,7 @@ void OptionEntry::set_long_name(const Glib::ustring& value)
if(gobject_->long_name)
{
g_free((gchar*)(gobject_->long_name));
- gobject_->long_name = 0;
+ gobject_->long_name = nullptr;
}
//Note that we do not use NULL for an empty string,
@@ -89,7 +89,7 @@ void OptionEntry::set_description(const Glib::ustring& value)
if(gobject_->description)
{
g_free((gchar*)(gobject_->description));
- gobject_->description = 0;
+ gobject_->description = nullptr;
}
gobj()->description = (value).empty() ? 0 : g_strdup((value).c_str());
@@ -100,7 +100,7 @@ void OptionEntry::set_arg_description(const Glib::ustring& value)
if(gobject_->arg_description)
{
g_free((gchar*)(gobject_->arg_description));
- gobject_->arg_description = 0;
+ gobject_->arg_description = nullptr;
}
gobj()->arg_description = (value).empty() ? 0 : g_strdup((value).c_str());