From: Richard Kimberly Heck Date: Thu, 12 Nov 2020 21:30:03 +0000 (-0500) Subject: nullptr X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=acec4a21f1360f8941d58cf00103abb4ce75e667;p=features.git nullptr --- diff --git a/src/insets/InsetText.cpp b/src/insets/InsetText.cpp index a9474999f4..2a99b109be 100644 --- a/src/insets/InsetText.cpp +++ b/src/insets/InsetText.cpp @@ -1187,7 +1187,7 @@ bool InsetText::showCompletionCursor() const CompletionList const * InsetText::createCompletionList(Cursor const & cur) const { - return completionSupported(cur) ? text_.createCompletionList(cur) : 0; + return completionSupported(cur) ? text_.createCompletionList(cur) : nullptr; }