]> git.lyx.org Git - features.git/commitdiff
nullptr
authorRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 12 Nov 2020 21:30:03 +0000 (16:30 -0500)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 12 Nov 2020 23:09:56 +0000 (18:09 -0500)
src/insets/InsetText.cpp

index a9474999f4fee533bdb51f12c3e276734ed941c7..2a99b109be806a1732d64f0a5eef607fc7a6448d 100644 (file)
@@ -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;
 }