Replace NULL with nullptr
This commit is contained in:
@ -66,7 +66,7 @@ void EditorLog::_notification(int p_what) {
|
||||
} else if (p_what == NOTIFICATION_THEME_CHANGED) {
|
||||
Ref<DynamicFont> df_output_code = get_theme_font("output_source", "EditorFonts");
|
||||
if (df_output_code.is_valid()) {
|
||||
if (log != NULL) {
|
||||
if (log != nullptr) {
|
||||
log->add_theme_font_override("normal_font", get_theme_font("output_source", "EditorFonts"));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user